Sha256: 2145e49c613d436077aa61d3bdee88ddd4bec6b173d0168a38dda17cfe01cec2
Contents?: true
Size: 930 Bytes
Versions: 36
Compression:
Stored size: 930 Bytes
Contents
require "cases/helper" require 'active_record/schema' if ActiveRecord::Base.connection.supports_migrations? class ActiveRecordSchemaTest < ActiveRecord::TestCase self.use_transactional_fixtures = false def setup @connection = ActiveRecord::Base.connection end def teardown @connection.drop_table :fruits rescue nil end def test_schema_define ActiveRecord::Schema.define(:version => 7) do create_table :fruits do |t| t.column :color, :string t.column :fruit_size, :string # NOTE: "size" is reserved in Oracle t.column :texture, :string t.column :flavor, :string end end assert_nothing_raised { @connection.select_all "SELECT * FROM fruits" } assert_nothing_raised { @connection.select_all "SELECT * FROM schema_migrations" } assert_equal 7, ActiveRecord::Migrator::current_version end end end
Version data entries
36 entries across 35 versions & 11 rubygems