aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-04-16 23:36:09 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-04-16 23:36:09 -0300
commit3df776c9ad5c1ff3e97d31b4933010b78e0a3f6e (patch)
tree011b82703efdbeaa03396db0fbc21b9091852427 /railties
parent86c640a1625aa3a8ec8728c2f1c640c9718fcb0b (diff)
downloadrails-3df776c9ad5c1ff3e97d31b4933010b78e0a3f6e.tar.gz
rails-3df776c9ad5c1ff3e97d31b4933010b78e0a3f6e.tar.bz2
rails-3df776c9ad5c1ff3e97d31b4933010b78e0a3f6e.zip
Fix test
Diffstat (limited to 'railties')
-rw-r--r--railties/test/generators/app_generator_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb
index 40cb876b34..ef6877ed30 100644
--- a/railties/test/generators/app_generator_test.rb
+++ b/railties/test/generators/app_generator_test.rb
@@ -294,10 +294,10 @@ class AppGeneratorTest < Rails::Generators::TestCase
end
end
- def test_inclusion_of_ruby_debug19
+ def test_inclusion_of_debugger
run_generator
assert_file "Gemfile" do |contents|
- assert_match(/gem 'ruby-debug19', :require => 'ruby-debug'/, contents)
+ assert_match(/gem 'debugger'/, contents)
end
end