diff options
author | Mohit Natoo <mohitnatoo@gmail.com> | 2016-02-29 19:09:00 +0530 |
---|---|---|
committer | Mohit Natoo <mohitnatoo@gmail.com> | 2016-02-29 19:09:00 +0530 |
commit | 259032e20ae77d2de4b450396b9662f3e9852125 (patch) | |
tree | 02a526f80ce40b1532ed545bd03b12230641b993 | |
parent | b884ee6fa90a0fa96bb40322393815ec78ff805c (diff) | |
download | rails-259032e20ae77d2de4b450396b9662f3e9852125.tar.gz rails-259032e20ae77d2de4b450396b9662f3e9852125.tar.bz2 rails-259032e20ae77d2de4b450396b9662f3e9852125.zip |
- Made changes to have test cases in actions_test more readable.
-rw-r--r-- | railties/test/generators/actions_test.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/railties/test/generators/actions_test.rb b/railties/test/generators/actions_test.rb index 6158748194..e44e5ce963 100644 --- a/railties/test/generators/actions_test.rb +++ b/railties/test/generators/actions_test.rb @@ -201,7 +201,7 @@ class ActionsTest < Rails::Generators::TestCase end end - def test_rake_should_run_rake_command_with_default_env + def test_rails_should_run_rake_command_with_default_env assert_called_with(generator, :run, ["rails log:clear RAILS_ENV=development", verbose: false]) do with_rails_env nil do action :rake, 'log:clear' @@ -209,13 +209,13 @@ class ActionsTest < Rails::Generators::TestCase end end - def test_rake_with_env_option_should_run_rake_command_in_env + def test_rails_with_env_option_should_run_rake_command_in_env assert_called_with(generator, :run, ['rails log:clear RAILS_ENV=production', verbose: false]) do action :rake, 'log:clear', env: 'production' end end - def test_rake_with_rails_env_variable_should_run_rake_command_in_env + test "rails with RAILS_ENV variable should run rake command in env" do assert_called_with(generator, :run, ['rails log:clear RAILS_ENV=production', verbose: false]) do with_rails_env "production" do action :rake, 'log:clear' @@ -223,7 +223,7 @@ class ActionsTest < Rails::Generators::TestCase end end - def test_env_option_should_win_over_rails_env_variable_when_running_rake + test "env option should win over RAILS_ENV variable when running rake" do assert_called_with(generator, :run, ['rails log:clear RAILS_ENV=production', verbose: false]) do with_rails_env "staging" do action :rake, 'log:clear', env: 'production' @@ -231,7 +231,7 @@ class ActionsTest < Rails::Generators::TestCase end end - def test_rake_with_sudo_option_should_run_rake_command_with_sudo + def test_rails_with_sudo_option_should_run_rake_command_with_sudo assert_called_with(generator, :run, ["sudo rails log:clear RAILS_ENV=development", verbose: false]) do with_rails_env nil do action :rake, 'log:clear', sudo: true |