From edda0bfe76fc9b2adcdb705665aaef2769e6ef03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Tue, 21 Jul 2009 12:16:25 +0200 Subject: Allow nested and multiple fallbacks for generators. --- railties/test/generators_test.rb | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'railties/test') 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 -- cgit v1.2.3