1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

More assert_match warnings fixed.

This commit is contained in:
Arun Agrawal 2012-05-30 14:38:56 +05:30
parent 4646b2ecac
commit 05f88024de
4 changed files with 12 additions and 12 deletions

View file

@ -288,16 +288,16 @@ module ApplicationTests
params = {:authenticity_token => token}
get "/posts/1"
assert_match /patch/, last_response.body
assert_match(/patch/, last_response.body)
patch "/posts/1", params
assert_match /update/, last_response.body
assert_match(/update/, last_response.body)
patch "/posts/1", params
assert_equal 200, last_response.status
put "/posts/1", params
assert_match /update/, last_response.body
assert_match(/update/, last_response.body)
put "/posts/1", params
assert_equal 200, last_response.status

View file

@ -35,7 +35,7 @@ class Rails::ConsoleTest < ActiveSupport::TestCase
start
assert_match /Loading \w+ environment \(Rails/, output
assert_match(/Loading \w+ environment \(Rails/, output)
end
def test_start_with_debugger
@ -52,7 +52,7 @@ class Rails::ConsoleTest < ActiveSupport::TestCase
start ["--sandbox"]
assert_match /Loading \w+ environment in sandbox \(Rails/, output
assert_match(/Loading \w+ environment in sandbox \(Rails/, output)
end
def test_console_with_environment
@ -61,7 +61,7 @@ class Rails::ConsoleTest < ActiveSupport::TestCase
start ["-e production"]
assert_match /production/, output
assert_match(/production/, output)
end
def test_console_with_rails_environment
@ -70,7 +70,7 @@ class Rails::ConsoleTest < ActiveSupport::TestCase
start ["RAILS_ENV=production"]
assert_match /production/, output
assert_match(/production/, output)
end

View file

@ -12,7 +12,7 @@ class Rails::DBConsoleTest < ActiveSupport::TestCase
app_config({})
capture_abort { Rails::DBConsole.config }
assert aborted
assert_match /No database is configured for the environment '\w+'/, output
assert_match(/No database is configured for the environment '\w+'/, output)
app_config(test: "with_init")
assert_equal Rails::DBConsole.config, "with_init"
@ -129,7 +129,7 @@ class Rails::DBConsoleTest < ActiveSupport::TestCase
def test_unknown_command_line_client
start(adapter: 'unknown', database: 'db')
assert aborted
assert_match /Unknown command-line client for db/, output
assert_match(/Unknown command-line client for db/, output)
end
def test_print_help_short
@ -138,7 +138,7 @@ class Rails::DBConsoleTest < ActiveSupport::TestCase
end
assert aborted
assert_equal '', output
assert_match /Usage:.*dbconsole/, stdout
assert_match(/Usage:.*dbconsole/, stdout)
end
def test_print_help_long
@ -147,7 +147,7 @@ class Rails::DBConsoleTest < ActiveSupport::TestCase
end
assert aborted
assert_equal '', output
assert_match /Usage:.*dbconsole/, stdout
assert_match(/Usage:.*dbconsole/, stdout)
end
private

View file

@ -205,7 +205,7 @@ class GeneratorsTest < Rails::Generators::TestCase
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
assert_match(/:: 2 ::/, output)
end
def test_hide_namespace