1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/support/ddl_helper.rb
Guo Xiang Tan 79405a07a4 Extract with_example_table into helper method.
This setups the helper method which other tests can benefit from.
2014-03-20 11:48:17 -07:00

8 lines
238 B
Ruby

module DdlHelper
def with_example_table(connection, table_name, definition = nil)
connection.exec_query("CREATE TABLE #{table_name}(#{definition})")
yield
ensure
connection.exec_query("DROP TABLE #{table_name}")
end
end