module DdlHelper

Public Instance Methods

with_example_table(connection, table_name, definition = nil) { || ... } click to toggle source
# File activerecord/test/support/ddl_helper.rb, line 4
def with_example_table(connection, table_name, definition = nil)
  connection.execute("CREATE TABLE #{table_name}(#{definition})")
  yield
ensure
  connection.execute("DROP TABLE #{table_name}")
end