From 9b444fe73beaddccd5664d0e0f17f948f00680bf Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 8 Jun 2007 01:40:05 +0000 Subject: Rollback [6961] which breaks SQLite tests. Reference #7345. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6965 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/migration_test.rb | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'activerecord/test') diff --git a/activerecord/test/migration_test.rb b/activerecord/test/migration_test.rb index fa765a7017..d1e2059c9a 100644 --- a/activerecord/test/migration_test.rb +++ b/activerecord/test/migration_test.rb @@ -807,22 +807,6 @@ if ActiveRecord::Base.connection.supports_migrations? end end - def test_should_disallow_duplicate_column_definition - assert_raises(ActiveRecord::StatementInvalid) do - Person.connection.add_column("people", "full_name", :string, :limit => 40) - Person.connection.add_column("people", "full_name", :text) - end - - assert_raises(RuntimeError) do - Person.connection.create_table :people_with_errors do |t| - t.column "full_name", :string, :limit => 40 - t.column "full_name", :text - end - end - - Person.reset_column_information - end - end end -- cgit v1.2.3