aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/object/itself_test.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-08-01 14:32:50 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-08-01 14:32:50 -0300
commitcfbb5a28cc2f7062f2812b97d669c6e387f0c17f (patch)
tree157e70dc26e0c8cd9c9d6cec05da18e472f918a1 /activesupport/test/core_ext/object/itself_test.rb
parent64d91122222c11ad3918cc8e2e3ebc4b0a03448a (diff)
downloadrails-cfbb5a28cc2f7062f2812b97d669c6e387f0c17f.tar.gz
rails-cfbb5a28cc2f7062f2812b97d669c6e387f0c17f.tar.bz2
rails-cfbb5a28cc2f7062f2812b97d669c6e387f0c17f.zip
Rename tests too
Diffstat (limited to 'activesupport/test/core_ext/object/itself_test.rb')
-rw-r--r--activesupport/test/core_ext/object/itself_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/object/itself_test.rb b/activesupport/test/core_ext/object/itself_test.rb
index 0885fe91e3..65db0ddf40 100644
--- a/activesupport/test/core_ext/object/itself_test.rb
+++ b/activesupport/test/core_ext/object/itself_test.rb
@@ -1,8 +1,8 @@
require 'abstract_unit'
require 'active_support/core_ext/object'
-class Object::SelfTest < ActiveSupport::TestCase
- test 'self returns self' do
+class Object::ItselfTest < ActiveSupport::TestCase
+ test 'itself returns self' do
object = 'fun'
assert_equal object, object.itself
end