aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-08-07 16:03:09 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2014-08-07 16:03:09 -0700
commite81453ef92b37156dafc092093106c8e8b87b268 (patch)
treeb5cd69febb4fe5f8d8b6c5dad54958978352084e /railties
parent8121eefc222fbd8979ab70d89725a2e330f5a9b2 (diff)
downloadrails-e81453ef92b37156dafc092093106c8e8b87b268.tar.gz
rails-e81453ef92b37156dafc092093106c8e8b87b268.tar.bz2
rails-e81453ef92b37156dafc092093106c8e8b87b268.zip
need to call super
Diffstat (limited to 'railties')
-rw-r--r--railties/test/engine_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/test/engine_test.rb b/railties/test/engine_test.rb
index 8401494bd2..f46fb748f5 100644
--- a/railties/test/engine_test.rb
+++ b/railties/test/engine_test.rb
@@ -17,6 +17,7 @@ class EngineTest < ActiveSupport::TestCase
attr_reader :hello
def initialize
@hello = "world"
+ super
end
end
assert_equal "world", klass.instance.hello