mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
139b92495f
* TestCase: introduce declared setup and teardown callbacks. Pass a list of methods and an optional block to call before setup or after teardown. Setup callbacks are run in the order declared; teardown callbacks are run in reverse. [Jeremy Kemper] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8570 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
46 lines
1.6 KiB
Ruby
46 lines
1.6 KiB
Ruby
require 'abstract_unit'
|
|
|
|
class ActiveSchemaTest < ActiveSupport::TestCase
|
|
def setup
|
|
ActiveRecord::ConnectionAdapters::MysqlAdapter.class_eval do
|
|
alias_method :execute_without_stub, :execute
|
|
def execute(sql, name = nil) return sql end
|
|
end
|
|
end
|
|
|
|
def teardown
|
|
ActiveRecord::ConnectionAdapters::MysqlAdapter.class_eval do
|
|
remove_method :execute
|
|
alias_method :execute, :execute_without_stub
|
|
end
|
|
end
|
|
|
|
def test_drop_table
|
|
assert_equal "DROP TABLE `people`", drop_table(:people)
|
|
end
|
|
|
|
if current_adapter?(:MysqlAdapter)
|
|
def test_create_mysql_database_with_encoding
|
|
assert_equal "CREATE DATABASE `matt` DEFAULT CHARACTER SET `utf8`", create_database(:matt)
|
|
assert_equal "CREATE DATABASE `aimonetti` DEFAULT CHARACTER SET `latin1`", create_database(:aimonetti, {:charset => 'latin1'})
|
|
assert_equal "CREATE DATABASE `matt_aimonetti` DEFAULT CHARACTER SET `big5` COLLATE `big5_chinese_ci`", create_database(:matt_aimonetti, {:charset => :big5, :collation => :big5_chinese_ci})
|
|
end
|
|
end
|
|
|
|
def test_add_column
|
|
assert_equal "ALTER TABLE `people` ADD `last_name` varchar(255)", add_column(:people, :last_name, :string)
|
|
end
|
|
|
|
def test_add_column_with_limit
|
|
assert_equal "ALTER TABLE `people` ADD `key` varchar(32)", add_column(:people, :key, :string, :limit => 32)
|
|
end
|
|
|
|
def test_drop_table_with_specific_database
|
|
assert_equal "DROP TABLE `otherdb`.`people`", drop_table('otherdb.people')
|
|
end
|
|
|
|
private
|
|
def method_missing(method_symbol, *arguments)
|
|
ActiveRecord::Base.connection.send(method_symbol, *arguments)
|
|
end
|
|
end
|