will on master
Remove nested it in numeric_spe… (compare)
bcardiff on fix-nested-it
Remove nested it in numeric_spe… (compare)
# TODO: Write documentation for `test`
require "DB"
require "PG"
module test
VERSION = "0.1.0"
# TODO: Put your code here
db = DB.open "postgres://localhost:5432/crystal_test"
begin
db.exec "create table contacts (name varchar(30), age int)"
ensure
db.close
end
end