We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d1dc92 commit b115670Copy full SHA for b115670
test/test_helper.rb
@@ -35,3 +35,11 @@ class Racer < Struct.new(:id, :name)
35
include ActiveModel::Conversion
36
end
37
38
+# Instantiate an Application in order to trigger the initializers
39
+Class.new(Rails::Application) do
40
+ config.secret_key_base = 'secret'
41
+ config.eager_load = false
42
+end.initialize!
43
+
44
+# Touch AV::Base in order to trigger :action_view on_load hook before running the tests
45
+ActionView::Base.inspect
0 commit comments