aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/initializer_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/test/initializer_test.rb')
-rw-r--r--railties/test/initializer_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/test/initializer_test.rb b/railties/test/initializer_test.rb
index 33c81bc5ad..dad9e55e61 100644
--- a/railties/test/initializer_test.rb
+++ b/railties/test/initializer_test.rb
@@ -314,10 +314,10 @@ end
class RailsRootTest < Test::Unit::TestCase
def test_rails_dot_root_equals_rails_root
- assert_equal RAILS_ROOT, Rails.root
+ assert_equal RAILS_ROOT, Rails.root.to_s
end
- def test_rails_dot_root_accepts_arguments_for_file_dot_join
- assert_equal File.join(RAILS_ROOT, 'app', 'controllers'), Rails.root('app', 'controllers')
+ def test_rails_dot_root_should_be_a_pathname
+ assert_equal File.join(RAILS_ROOT, 'app', 'controllers'), Rails.root.join('app', 'controllers').to_s
end
end \ No newline at end of file