mirror of
https://github.com/awakesecurity/hocker.git
synced 2024-11-22 02:12:35 +03:00
aab52668e5
* Refactoring polish and haddocks documentation refactor * Remove tested with 7.10.2 until we actually test it * Remove the TODO header as most of that is done now
18 lines
364 B
Haskell
18 lines
364 B
Haskell
|
|
module Main where
|
|
|
|
import Test.Tasty
|
|
import Test.Tasty.HUnit
|
|
|
|
import qualified Tests.Data.Docker.Image as Docker.Image
|
|
import qualified Tests.Data.Docker.Nix.FetchDocker as FetchDockerTests
|
|
|
|
main :: IO ()
|
|
main = defaultMain tests
|
|
|
|
tests :: TestTree
|
|
tests = testGroup "Tests"
|
|
[ Docker.Image.unitTests
|
|
, FetchDockerTests.tests
|
|
]
|