aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2012-10-10 10:40:14 +0530
committerArun Agrawal <arunagw@gmail.com>2012-10-10 10:40:14 +0530
commit3121ac06a91be5348ce778e2c664e821d6a135a8 (patch)
treeb384cc4fc9ff028da08fc2799945a8081f67eb1f /railties
parent269adaec211c41301271f02a597d1ed170deb717 (diff)
downloadrails-3121ac06a91be5348ce778e2c664e821d6a135a8.tar.gz
rails-3121ac06a91be5348ce778e2c664e821d6a135a8.tar.bz2
rails-3121ac06a91be5348ce778e2c664e821d6a135a8.zip
warning fixed: ambiguous first argument; put parentheses or even spaces
Diffstat (limited to 'railties')
-rw-r--r--railties/test/commands/console_test.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/railties/test/commands/console_test.rb b/railties/test/commands/console_test.rb
index 91ede1cb68..69e89d87ae 100644
--- a/railties/test/commands/console_test.rb
+++ b/railties/test/commands/console_test.rb
@@ -68,40 +68,40 @@ class Rails::ConsoleTest < ActiveSupport::TestCase
def test_default_environment_with_no_rails_env
with_rails_env nil do
start
- assert_match /\sdevelopment\s/, output
+ assert_match(/\sdevelopment\s/, output)
end
end
def test_default_environment_with_rails_env
with_rails_env 'special-production' do
start
- assert_match /\sspecial-production\s/, output
+ assert_match(/\sspecial-production\s/, output)
end
end
def test_e_option
start ['-e', 'special-production']
- assert_match /\sspecial-production\s/, output
+ assert_match(/\sspecial-production\s/, output)
end
def test_environment_option
start ['--environment=special-production']
- assert_match /\sspecial-production\s/, output
+ assert_match(/\sspecial-production\s/, output)
end
def test_rails_env_is_production_when_first_argument_is_p
start ['p']
- assert_match /\sproduction\s/, output
+ assert_match(/\sproduction\s/, output)
end
def test_rails_env_is_test_when_first_argument_is_t
start ['t']
- assert_match /\stest\s/, output
+ assert_match(/\stest\s/, output)
end
def test_rails_env_is_development_when_argument_is_d
start ['d']
- assert_match /\sdevelopment\s/, output
+ assert_match(/\sdevelopment\s/, output)
end
private