diff options
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/controller_generator_test.rb | 13 |
1 files changed, 12 insertions, 1 deletions
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/ |