aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-07-21 12:16:25 +0200
committerJosé Valim <jose.valim@gmail.com>2009-07-21 12:16:25 +0200
commitedda0bfe76fc9b2adcdb705665aaef2769e6ef03 (patch)
tree707bb51e1f6d2ad6a891ebc85cd9f8a19c7167ba /railties/test/generators_test.rb
parent10fd0217894fbdf600f3ea6cf080598ce0569809 (diff)
downloadrails-edda0bfe76fc9b2adcdb705665aaef2769e6ef03.tar.gz
rails-edda0bfe76fc9b2adcdb705665aaef2769e6ef03.tar.bz2
rails-edda0bfe76fc9b2adcdb705665aaef2769e6ef03.zip
Allow nested and multiple fallbacks for generators.
Diffstat (limited to 'railties/test/generators_test.rb')
-rw-r--r--railties/test/generators_test.rb16
1 files changed, 11 insertions, 5 deletions
diff --git a/railties/test/generators_test.rb b/railties/test/generators_test.rb
index 56c95caa41..ea3f7d5487 100644
--- a/railties/test/generators_test.rb
+++ b/railties/test/generators_test.rb
@@ -116,16 +116,22 @@ class GeneratorsTest < GeneratorsTestCase
rm_rf File.dirname(template)
end
+ def test_fallbacks_for_generators_on_find_by_namespace
+ Rails::Generators.fallbacks[:remarkable] = :test_unit
+ klass = Rails::Generators.find_by_namespace(:plugin, :remarkable)
+ assert klass
+ assert_equal "test_unit:generators:plugin", klass.namespace
+ end
+
def test_fallbacks_for_generators_on_invoke
Rails::Generators.fallbacks[:shoulda] = :test_unit
TestUnit::Generators::ModelGenerator.expects(:start).with(["Account"], {})
Rails::Generators.invoke "shoulda:model", ["Account"]
end
- def test_fallbacks_for_generators_on_find_by_namespace
- Rails::Generators.fallbacks[:remarkable] = :test_unit
- klass = Rails::Generators.find_by_namespace(:plugin, :remarkable)
- assert klass
- assert_equal "test_unit:generators:plugin", klass.namespace
+ def test_nested_fallbacks_for_generators
+ Rails::Generators.fallbacks[:super_shoulda] = :shoulda
+ TestUnit::Generators::ModelGenerator.expects(:start).with(["Account"], {})
+ Rails::Generators.invoke "super_shoulda:model", ["Account"]
end
end