From e375819b76ac04bc60fd516b15bbe42c093eb547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Fri, 26 Jun 2009 20:42:00 +0200 Subject: Spec --no and --skip. --- railties/test/generators/controller_generator_test.rb | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'railties/test/generators') diff --git a/railties/test/generators/controller_generator_test.rb b/railties/test/generators/controller_generator_test.rb index 88b54a54ed..e10580f40f 100644 --- a/railties/test/generators/controller_generator_test.rb +++ b/railties/test/generators/controller_generator_test.rb @@ -20,17 +20,28 @@ class ControllerGeneratorTest < GeneratorsTestCase assert_match /The name 'ObjectController' is either already used in your application or reserved/, content end - def test_invokes_helpers + def test_invokes_helper run_generator assert_file "app/helpers/account_helper.rb" assert_file "test/unit/helpers/account_helper_test.rb" end + def test_does_not_invoke_helper_if_required + run_generator ["account", "--skip-helper"] + assert_no_file "app/helpers/account_helper.rb" + assert_no_file "test/unit/helpers/account_helper_test.rb" + end + def test_invokes_default_test_framework run_generator assert_file "test/functional/account_controller_test.rb" end + def test_does_not_invoke_test_framework_if_required + run_generator ["account", "--no-test-framework"] + assert_no_file "test/functional/account_controller_test.rb" + end + def test_invokes_default_template_engine run_generator assert_file "app/views/account/foo.html.erb", /app\/views\/account\/foo/ -- cgit v1.2.3