mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 16:09:52 +01:00
9 lines
210 B
Ruby
9 lines
210 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "rails_helper"
|
|
|
|
describe "Zeitwerk compliance" do
|
|
it "eager loads all files without errors" do
|
|
expect { Rails.application.eager_load! }.not_to raise_error
|
|
end
|
|
end
|