aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/ar_schema_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/ar_schema_test.rb')
-rw-r--r--activerecord/test/ar_schema_test.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/activerecord/test/ar_schema_test.rb b/activerecord/test/ar_schema_test.rb
new file mode 100644
index 0000000000..2b7c0c3fc7
--- /dev/null
+++ b/activerecord/test/ar_schema_test.rb
@@ -0,0 +1,31 @@
+require 'abstract_unit'
+require "#{File.dirname(__FILE__)}/../lib/active_record/schema"
+
+if ActiveRecord::Base.connection.supports_migrations?
+
+ class ActiveRecordSchemaTest < Test::Unit::TestCase
+ 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 :size, :string
+ 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_info" }
+ assert_equal 7, @connection.select_one("SELECT version FROM schema_info")['version'].to_i
+ end
+ end
+
+end