From 8a5a9dcbf64843f064b6e8a0b9c6eea8f0b8536e Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Wed, 9 Apr 2008 16:20:15 +0000 Subject: Add support for interleaving migrations by storing which migrations have run in the new schema_migrations table. Closes #11493 [jordi] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9244 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/cases/schema_dumper_test.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'activerecord/test/cases/schema_dumper_test.rb') diff --git a/activerecord/test/cases/schema_dumper_test.rb b/activerecord/test/cases/schema_dumper_test.rb index d96bd62e56..ba8bff3b44 100644 --- a/activerecord/test/cases/schema_dumper_test.rb +++ b/activerecord/test/cases/schema_dumper_test.rb @@ -16,7 +16,7 @@ if ActiveRecord::Base.connection.respond_to?(:tables) output = standard_dump assert_match %r{create_table "accounts"}, output assert_match %r{create_table "authors"}, output - assert_no_match %r{create_table "schema_info"}, output + assert_no_match %r{create_table "schema_migrations"}, output end def test_schema_dump_excludes_sqlite_sequence @@ -81,7 +81,7 @@ if ActiveRecord::Base.connection.respond_to?(:tables) output = stream.string assert_no_match %r{create_table "accounts"}, output assert_match %r{create_table "authors"}, output - assert_no_match %r{create_table "schema_info"}, output + assert_no_match %r{create_table "schema_migrations"}, output end def test_schema_dump_with_regexp_ignored_table @@ -92,7 +92,7 @@ if ActiveRecord::Base.connection.respond_to?(:tables) output = stream.string assert_no_match %r{create_table "accounts"}, output assert_match %r{create_table "authors"}, output - assert_no_match %r{create_table "schema_info"}, output + assert_no_match %r{create_table "schema_migrations"}, output end def test_schema_dump_illegal_ignored_table_value -- cgit v1.2.3