diff --git a/spec/db_spec.cr b/spec/db_spec.cr index 658525c..ff508f6 100644 --- a/spec/db_spec.cr +++ b/spec/db_spec.cr @@ -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