12 lines
232 B
Haskell
12 lines
232 B
Haskell
|
|
module Main (main) where
|
||
|
|
import Test.Hspec
|
||
|
|
|
||
|
|
import qualified Test.OlogsSpec as Ologs
|
||
|
|
--import Test.FooSpec
|
||
|
|
|
||
|
|
main :: IO ()
|
||
|
|
main = hspec $ do
|
||
|
|
describe "Ologs" Ologs.spec
|
||
|
|
-- describe "My amazing tests" [ FastLaneSpec FooSpec ]
|
||
|
|
|