Add failing test for multi-step

This commit is contained in:
Tom Richards 2017-09-14 11:38:14 -04:00
parent c850ec4b72
commit 7478bc854b

View file

@ -119,4 +119,12 @@ DB::DriverSpecs(DB::Any).run do
end
end
end
it "handles single-step pragma statements" do |db|
db.exec %(PRAGMA synchronous = OFF)
end
it "handles multi-step pragma statements" do |db|
db.exec %(PRAGMA journal_mode = memory)
end
end