mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-12-02 09:13:12 +03:00
13 lines
263 B
Haskell
13 lines
263 B
Haskell
|
module Main where
|
||
|
|
||
|
import qualified Test.Hspec
|
||
|
import qualified NixDaemonSpec
|
||
|
|
||
|
-- we run remote tests in
|
||
|
-- Linux namespaces to avoid interacting with systems store
|
||
|
main :: IO ()
|
||
|
main = do
|
||
|
NixDaemonSpec.enterNamespaces
|
||
|
Test.Hspec.hspec
|
||
|
NixDaemonSpec.spec
|