aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--railties/test/rails_generator_test.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/railties/test/rails_generator_test.rb b/railties/test/rails_generator_test.rb
index 970cf6b3fc..9d8f91abaf 100644
--- a/railties/test/rails_generator_test.rb
+++ b/railties/test/rails_generator_test.rb
@@ -129,9 +129,5 @@ class RailsGeneratorTest < Test::Unit::TestCase
# Default behaviour is use the model name
g = Rails::Generator::Base.instance('scaffold', %w(Product))
assert_equal "Products", g.controller_name
-
- # When we specify a controller name make sure it sticks!!
- g = Rails::Generator::Base.instance('scaffold', %w(Product Admin))
- assert_equal "Admin", g.controller_name
end
end