diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-11-19 12:34:15 +0000 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-11-19 12:34:15 +0000 |
commit | 9c37416a3eaa446ec59cde1e7f8a913f62de3265 (patch) | |
tree | 69e614751d3f3825914e33f4720c8b3b4d1ec19a /activerecord/test/cases/adapters/mysql2 | |
parent | 89bbb6ce21324838d16afc1ea7220167fc3c80d8 (diff) | |
download | rails-9c37416a3eaa446ec59cde1e7f8a913f62de3265.tar.gz rails-9c37416a3eaa446ec59cde1e7f8a913f62de3265.tar.bz2 rails-9c37416a3eaa446ec59cde1e7f8a913f62de3265.zip |
Verify that #3690 has been closed by previous changes to the mysql
adapters.
These tests fail on the v3.1.2 tag.
Closes #3690.
Diffstat (limited to 'activerecord/test/cases/adapters/mysql2')
-rw-r--r-- | activerecord/test/cases/adapters/mysql2/schema_test.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/mysql2/schema_test.rb b/activerecord/test/cases/adapters/mysql2/schema_test.rb index 858d1da2dd..49514e1539 100644 --- a/activerecord/test/cases/adapters/mysql2/schema_test.rb +++ b/activerecord/test/cases/adapters/mysql2/schema_test.rb @@ -13,7 +13,7 @@ module ActiveRecord table = Post.table_name @db_name = db - @omgpost = Class.new(Post) do + @omgpost = Class.new(ActiveRecord::Base) do set_table_name "#{db}.#{table}" def self.name; 'Post'; end end @@ -23,6 +23,10 @@ module ActiveRecord assert @omgpost.find(:first) end + def test_primary_key + assert_equal 'id', @omgpost.primary_key + end + def test_table_exists? name = @omgpost.table_name assert @connection.table_exists?(name), "#{name} table should exist" |