eBooru/test/unit/zeitwerk_test.rb
Earlopain fc7d84affd
[RuboCop] Enable Style/FrozenStringLiteralComment
This reduces allocations on the posts page by about 5%, from basic testing
2024-02-25 18:15:55 +01:00

10 lines
219 B
Ruby

# frozen_string_literal: true
require "test_helper"
class ZeitwerkTest < ActiveSupport::TestCase
should "eager load all files without errors" do
assert_nothing_raised { Rails.application.eager_load! }
end
end