diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-03-04 04:33:55 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-03-04 04:33:55 +0000 |
commit | 70d7b3752f8cc8fe821a1a3873573b6d313ea129 (patch) | |
tree | de78f201d48c0f3db88c8084eb9c5f1ab1c2d91d /activerecord/test | |
parent | 543622959a85ae464dfce4e0658e96a2e7dd3dbb (diff) | |
download | rails-70d7b3752f8cc8fe821a1a3873573b6d313ea129.tar.gz rails-70d7b3752f8cc8fe821a1a3873573b6d313ea129.tar.bz2 rails-70d7b3752f8cc8fe821a1a3873573b6d313ea129.zip |
Test DateTime native type in migrations. References #7649.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6304 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/migration_test.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/activerecord/test/migration_test.rb b/activerecord/test/migration_test.rb index 09cb6a6b51..56712284b2 100644 --- a/activerecord/test/migration_test.rb +++ b/activerecord/test/migration_test.rb @@ -40,7 +40,7 @@ if ActiveRecord::Base.connection.supports_migrations? Reminder.reset_column_information %w(last_name key bio age height wealth birthday favorite_day - male administrator).each do |column| + moment_of_truth male administrator).each do |column| Person.connection.remove_column('people', column) rescue nil end Person.connection.remove_column("people", "first_name") rescue nil @@ -261,8 +261,9 @@ if ActiveRecord::Base.connection.supports_migrations? Person.connection.add_column "people", "wealth", :decimal, :precision => '30', :scale => '10' Person.connection.add_column "people", "birthday", :datetime Person.connection.add_column "people", "favorite_day", :date + Person.connection.add_column "people", "moment_of_truth", :datetime Person.connection.add_column "people", "male", :boolean - assert_nothing_raised { Person.create :first_name => 'bob', :last_name => 'bobsen', :bio => "I was born ....", :age => 18, :height => 1.78, :wealth => BigDecimal.new("12345678901234567890.0123456789"), :birthday => 18.years.ago, :favorite_day => 10.days.ago, :male => true } + assert_nothing_raised { Person.create :first_name => 'bob', :last_name => 'bobsen', :bio => "I was born ....", :age => 18, :height => 1.78, :wealth => BigDecimal.new("12345678901234567890.0123456789"), :birthday => 18.years.ago, :favorite_day => 10.days.ago, :moment_of_truth => "1817-10-25 21:40:18", :male => true } bob = Person.find(:first) assert_equal 'bob', bob.first_name @@ -294,6 +295,7 @@ if ActiveRecord::Base.connection.supports_migrations? assert_equal Date, bob.favorite_day.class end + assert_equal DateTime, bob.moment_of_truth.class assert_equal TrueClass, bob.male?.class assert_kind_of BigDecimal, bob.wealth end |