mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-11-30 22:42:02 +03:00
12 lines
299 B
Haskell
12 lines
299 B
Haskell
module Main where
|
|
|
|
import qualified System.Nix.Store.DB.Run
|
|
|
|
-- This only tests that database can be created
|
|
-- in-memory using migrateAll and that queryEverything
|
|
-- runs (with no data)
|
|
--
|
|
-- For better test, we would need a populated nix-store
|
|
main :: IO ()
|
|
main = System.Nix.Store.DB.Run.memTest
|