mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Stop shelling out more than necessary
This commit is contained in:
parent
0e67f793cd
commit
cf05e5f6ea
1 changed files with 10 additions and 10 deletions
|
@ -55,8 +55,8 @@ module ApplicationTests
|
|||
|
||||
def db_migrate_and_status
|
||||
Dir.chdir(app_path) do
|
||||
`rails generate model book title:string`
|
||||
`bundle exec rake db:migrate`
|
||||
`rails generate model book title:string;
|
||||
bundle exec rake db:migrate`
|
||||
output = `bundle exec rake db:migrate:status`
|
||||
assert_match(/database:\s+\S+#{expected[:database]}/, output)
|
||||
assert_match(/up\s+\d{14}\s+Create books/, output)
|
||||
|
@ -78,8 +78,8 @@ module ApplicationTests
|
|||
|
||||
def db_schema_dump
|
||||
Dir.chdir(app_path) do
|
||||
`rails generate model book title:string`
|
||||
`rake db:migrate db:schema:dump`
|
||||
`rails generate model book title:string;
|
||||
rake db:migrate db:schema:dump`
|
||||
schema_dump = File.read("db/schema.rb")
|
||||
assert_match(/create_table \"books\"/, schema_dump)
|
||||
end
|
||||
|
@ -96,8 +96,8 @@ module ApplicationTests
|
|||
|
||||
def db_fixtures_load
|
||||
Dir.chdir(app_path) do
|
||||
`rails generate model book title:string`
|
||||
`bundle exec rake db:migrate db:fixtures:load`
|
||||
`rails generate model book title:string;
|
||||
bundle exec rake db:migrate db:fixtures:load`
|
||||
assert_match(/#{expected[:database]}/,
|
||||
ActiveRecord::Base.connection_config[:database])
|
||||
require "#{app_path}/app/models/book"
|
||||
|
@ -120,8 +120,8 @@ module ApplicationTests
|
|||
|
||||
def db_structure_dump_and_load
|
||||
Dir.chdir(app_path) do
|
||||
`rails generate model book title:string`
|
||||
`bundle exec rake db:migrate db:structure:dump`
|
||||
`rails generate model book title:string;
|
||||
bundle exec rake db:migrate db:structure:dump`
|
||||
structure_dump = File.read("db/structure.sql")
|
||||
assert_match(/CREATE TABLE \"books\"/, structure_dump)
|
||||
`bundle exec rake db:drop db:structure:load`
|
||||
|
@ -148,8 +148,8 @@ module ApplicationTests
|
|||
|
||||
def db_test_load_structure
|
||||
Dir.chdir(app_path) do
|
||||
`rails generate model book title:string`
|
||||
`bundle exec rake db:migrate db:structure:dump db:test:load_structure`
|
||||
`rails generate model book title:string;
|
||||
bundle exec rake db:migrate db:structure:dump db:test:load_structure`
|
||||
ActiveRecord::Base.configurations = Rails.application.config.database_configuration
|
||||
ActiveRecord::Base.establish_connection 'test'
|
||||
require "#{app_path}/app/models/book"
|
||||
|
|
Loading…
Reference in a new issue