Fix syntax error in assert_match

上级 91363ec5
......@@ -100,8 +100,8 @@ def db_fixtures_load
`rails generate model book title:string`
`bundle exec rake db:migrate`
`bundle exec rake db:fixtures:load`
assert_match(/#{expected[:database]}/),
ActiveRecord::Base.connection_config[:database]
assert_match(/#{expected[:database]}/,
ActiveRecord::Base.connection_config[:database])
require "#{app_path}/app/models/book"
assert_equal 2, Book.count
end
......@@ -129,8 +129,8 @@ def db_structure_dump_and_load
assert_match(/CREATE TABLE \"books\"/, structure_dump)
`bundle exec rake db:drop`
`bundle exec rake db:structure:load`
assert_match(/#{expected[:database]}/),
ActiveRecord::Base.connection_config[:database]
assert_match(/#{expected[:database]}/,
ActiveRecord::Base.connection_config[:database])
require "#{app_path}/app/models/book"
#if structure is not loaded correctly, exception would be raised
assert Book.count, 0
......@@ -161,8 +161,8 @@ def db_test_load_structure
require "#{app_path}/app/models/book"
#if structure is not loaded correctly, exception would be raised
assert Book.count, 0
assert_match(/#{ActiveRecord::Base.configurations['test']['database']}/),
ActiveRecord::Base.connection_config[:database]
assert_match(/#{ActiveRecord::Base.configurations['test']['database']}/,
ActiveRecord::Base.connection_config[:database])
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册