hocker/test/Main.hs
Parnell Springmeyer aab52668e5 Refactoring polish and haddocks documentation refactor (#7)
* 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
2017-06-28 13:20:56 -05:00

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
]