aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/actions_test.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-10-18 10:53:43 -0500
committerJoshua Peek <josh@joshpeek.com>2009-10-18 10:53:43 -0500
commit01e04a446c801af88a1bb0315efffc775a00eedf (patch)
tree4f1cbb75fe88a06572e96c269342153167af61ab /railties/test/generators/actions_test.rb
parentf74e04c21d9930c863ef92639050c0434be8dd0c (diff)
downloadrails-01e04a446c801af88a1bb0315efffc775a00eedf.tar.gz
rails-01e04a446c801af88a1bb0315efffc775a00eedf.tar.bz2
rails-01e04a446c801af88a1bb0315efffc775a00eedf.zip
Use Rails.root in railties tests
Diffstat (limited to 'railties/test/generators/actions_test.rb')
-rw-r--r--railties/test/generators/actions_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/generators/actions_test.rb b/railties/test/generators/actions_test.rb
index adc61f6d8a..199b5fa8b4 100644
--- a/railties/test/generators/actions_test.rb
+++ b/railties/test/generators/actions_test.rb
@@ -89,7 +89,7 @@ class ActionsTest < GeneratorsTestCase
def test_environment_should_include_data_in_environment_initializer_block
run_generator
- load_paths = 'config.load_paths += %w["#{RAILS_ROOT}/app/extras"]'
+ load_paths = 'config.load_paths += %w["#{Rails.root}/app/extras"]'
action :environment, load_paths
assert_file 'config/application.rb', /#{Regexp.escape(load_paths)}/
end