mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
4dd0312934
dummy driver that parses the query initial type support for result_sets
15 lines
402 B
Crystal
15 lines
402 B
Crystal
require "spec"
|
|
require "db"
|
|
require "./dummy_driver"
|
|
|
|
describe DB::Driver do
|
|
it "should get driver class by name" do
|
|
DB.driver_class("dummy").should eq(DummyDriver)
|
|
end
|
|
|
|
it "should instantiate driver with options" do
|
|
driver = DB.driver "dummy", {"host": "localhost", "port": "1027"}
|
|
driver.options["host"].should eq("localhost")
|
|
driver.options["port"].should eq("1027")
|
|
end
|
|
end
|