Initial commit
This commit is contained in:
commit
d45d07b39b
13 changed files with 507 additions and 0 deletions
12
test/spec/AoCSpec.hs
Normal file
12
test/spec/AoCSpec.hs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
module AoCSpec (spec) where
|
||||
|
||||
import AoC.Internal
|
||||
|
||||
import Test.Hspec
|
||||
import Test.Hspec.QuickCheck (prop)
|
||||
|
||||
spec :: Spec
|
||||
spec = do
|
||||
describe "parseArgs" do
|
||||
it "returns the filename if given a single argument" do
|
||||
True `shouldBe` True
|
||||
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