aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-10-19 02:09:06 +0000
committerMichael Koziarski <michael@koziarski.com>2007-10-19 02:09:06 +0000
commit6ddde027c4e51262e58f67438672d66a2b278f43 (patch)
tree8f118a3be42d0513ea3e8a456f213d109913c3ed /activerecord/test
parent210f7e29e2557f9519ecad801c564db7fc0ec0a5 (diff)
downloadrails-6ddde027c4e51262e58f67438672d66a2b278f43.tar.gz
rails-6ddde027c4e51262e58f67438672d66a2b278f43.tar.bz2
rails-6ddde027c4e51262e58f67438672d66a2b278f43.zip
Add t.belongs_to and t.references to sexy migrations [arthurgeek]
Test harness for Sexy Migrations. [Koz] Closes #9775 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7973 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/migration_test.rb37
1 files changed, 36 insertions, 1 deletions
diff --git a/activerecord/test/migration_test.rb b/activerecord/test/migration_test.rb
index 4e778af336..5898a290f5 100644
--- a/activerecord/test/migration_test.rb
+++ b/activerecord/test/migration_test.rb
@@ -868,7 +868,42 @@ if ActiveRecord::Base.connection.supports_migrations?
Person.connection.execute("select suitably_short_seq.nextval from dual")
end
end
-
end
+
+ uses_mocha 'Sexy migration tests' do
+ class SexyMigrationsTest < Test::Unit::TestCase
+ def test_references_column_type_adds_id
+ with_new_table do |t|
+ t.expects(:column).with('customer_id', :integer, {})
+ t.references :customer
+ end
+ end
+
+ def test_references_column_type_with_polymarphic_adds_type
+ with_new_table do |t|
+ t.expects(:column).with('taggable_type', :string, {})
+ t.expects(:column).with('taggable_id', :integer, {})
+ t.references :taggable, :polymorphic => true
+ end
+ end
+
+ def test_belongs_to_works_like_references
+ with_new_table do |t|
+ t.expects(:column).with('customer_id', :integer, {})
+ t.belongs_to :customer
+ end
+ end
+
+ protected
+ def with_new_table
+ Person.connection.create_table :delete_me do |t|
+ yield t
+ end
+ ensure
+ Person.connection.drop_table :delete_me rescue nil
+ end
+
+ end # SexyMigrationsTest
+ end # uses_mocha
end