File tree Expand file tree Collapse file tree 4 files changed +78
-105
lines changed Expand file tree Collapse file tree 4 files changed +78
-105
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ generated_files/
66tests /test_gen /
77config.yaml
88result
9+ haskellings.cabal
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : haskellings
2+ version : 0.8.0.0
3+ github : " MondayMorningHaskell/haskellings"
4+ license : BSD3
5+ author : " James Bowen"
6+ maintainer : " james@mondaymoringhaskell.me"
7+ copyright : " 2021 Monday Morning Haskell"
8+ description : Please see the README on GitHub at <https://github.com/MondayMorningHaskell/haskellings#readme>
9+ extra-source-files :
10+ - README.md
11+ - ChangeLog.md
12+
13+ dependencies :
14+ - base >= 4.7 && < 5
15+ - containers
16+ - directory
17+ - filepath
18+ - mtl
19+
20+ ghc-options :
21+ - -fwarn-unused-imports
22+
23+ library :
24+ dependencies :
25+ - aeson
26+ - ansi-terminal
27+ - extra
28+ - fsnotify
29+ - tasty
30+ - tasty-hunit
31+ - process
32+ - time
33+ - yaml
34+ source-dirs : src
35+ other-modules :
36+ - Paths_haskellings
37+ - Haskellings.Internal.ExerciseList
38+ - Haskellings.Internal.ExecutableExercises
39+
40+ executables :
41+ haskellings :
42+ dependencies :
43+ - extra
44+ - haskellings
45+ ghc-options :
46+ - -threaded
47+ - -rtsopts
48+ - -with-rtsopts=-N
49+ main : Main.hs
50+ source-dirs : app
51+
52+ tests :
53+ haskellings-tests :
54+ dependencies :
55+ - haskellings
56+ - hspec
57+ - HUnit
58+ - time
59+ ghc-options :
60+ - -threaded
61+ - -rtsopts
62+ - -with-rtsopts=-N
63+ main : Main.hs
64+ other-modules : []
65+ source-dirs : tests
66+ unit-tests :
67+ dependencies :
68+ - haskellings
69+ - tasty
70+ - tasty-hunit
71+ ghc-options :
72+ - -threaded
73+ - -rtsopts
74+ - -with-rtsopts=-N
75+ main : UnitTests.hs
76+ other-modules : []
77+ source-dirs : tests
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import Test.Tasty.HUnit
1010import Haskellings.Constants
1111import Haskellings.DirectoryUtils
1212import Haskellings.LoadConfig
13- import Haskellings.Types
1413
1514main :: IO ()
1615main = do
You can’t perform that action at this time.
0 commit comments