Initial commit
This commit is contained in:
commit
88cbe81d08
15 changed files with 3807 additions and 0 deletions
11
test/spec/AoCSpec/InternalSpec.hs
Normal file
11
test/spec/AoCSpec/InternalSpec.hs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
module AoCSpec.InternalSpec (spec) where
|
||||
|
||||
import AoC.Internal
|
||||
|
||||
import Test.Hspec
|
||||
|
||||
spec :: Spec
|
||||
spec = do
|
||||
describe "solveRiddle" do
|
||||
it "runs the given solver" do
|
||||
solveRiddle "test/data/foo.txt" pure `shouldReturn` ()
|
||||
1
test/spec/Spec.hs
Normal file
1
test/spec/Spec.hs
Normal file
|
|
@ -0,0 +1 @@
|
|||
{-# OPTIONS_GHC -F -pgmF hspec-discover #-}
|
||||
Loading…
Add table
Add a link
Reference in a new issue