aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators_test.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-02-03 09:17:59 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-02-03 10:18:58 -0200
commitc6ef45d6c4e718b306ba8309e15ee5c1fb532878 (patch)
tree41808274ab680486545c44f47ccfc52564d610d8 /railties/test/generators_test.rb
parent2abaa19e77d1097730cfa6e0924ee7c1660ac01f (diff)
downloadrails-c6ef45d6c4e718b306ba8309e15ee5c1fb532878.tar.gz
rails-c6ef45d6c4e718b306ba8309e15ee5c1fb532878.tar.bz2
rails-c6ef45d6c4e718b306ba8309e15ee5c1fb532878.zip
Add convenience method to hide a generator from the available ones
It is usually useful to be able to hide a generator when running rails generate command. Such generators might be used only to dry up generators code and shouldn't be available to end users.
Diffstat (limited to 'railties/test/generators_test.rb')
-rw-r--r--railties/test/generators_test.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/railties/test/generators_test.rb b/railties/test/generators_test.rb
index 5f9ee220dc..60e7e57a91 100644
--- a/railties/test/generators_test.rb
+++ b/railties/test/generators_test.rb
@@ -201,10 +201,16 @@ class GeneratorsTest < Rails::Generators::TestCase
mspec = Rails::Generators.find_by_namespace :fixjour
assert mspec.source_paths.include?(File.join(Rails.root, "lib", "templates", "fixjour"))
end
-
+
def test_usage_with_embedded_ruby
require File.expand_path("fixtures/lib/generators/usage_template/usage_template_generator", File.dirname(__FILE__))
output = capture(:stdout) { Rails::Generators.invoke :usage_template, ['--help'] }
assert_match /:: 2 ::/, output
end
+
+ def test_hide_namespace
+ assert !Rails::Generators.hidden_namespaces.include?("special:namespace")
+ Rails::Generators.hide_namespace("special:namespace")
+ assert Rails::Generators.hidden_namespaces.include?("special:namespace")
+ end
end