mirror of
https://gitea.invidious.io/iv-org/shard-crystal-sqlite3.git
synced 2024-08-15 00:53:26 +00:00
Add failing test for multi-step
This commit is contained in:
parent
c850ec4b72
commit
7478bc854b
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue