forked from qfpl/state-machine-testing-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate-machine-testing-course.cabal
75 lines (67 loc) · 2.45 KB
/
state-machine-testing-course.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
cabal-version: 2.2
name: state-machine-testing-course
version: 0.1.0.0
synopsis: Introductory course for property-based state-machine testing.
description: Course material for learning about the mechanics and application of property-based state-machine testing.
license: BSD-3-Clause
-- The file containing the license text.
license-file: LICENCE
-- The package author(s).
author: QFPL @ Data61
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: oᴉ˙ldɟb@uɐǝs
-- A copyright notice.
copyright: Copyright (C) 2017 Commonwealth Scientific and Industrial Research Organisation (CSIRO)
-- copyright:
category: Education, Testing
build-type: Simple
extra-source-files: ChangeLog.md
common level-setup
default-language: Haskell2010
other-modules: CoffeeMachineTests
ghc-options: -Wall -threaded
build-depends: base >= 4.11 && < 4.13
, state-machine-testing-course
, hedgehog >= 0.6 && < 0.7
, lens > 4.15 && < 4.18
, tasty >= 1.1 && < 1.3
, tasty-hedgehog >= 0.2 && < 0.3
library
exposed-modules: CoffeeMachine
build-depends: base >= 4.11 && < 4.13
, mtl >= 2.2.2 && < 2.3
, lens > 4.15 && < 4.18
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
test-suite level01
import: level-setup
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: level01
test-suite level02
import: level-setup
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: level02
test-suite level03
import: level-setup
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: level03
test-suite level04
import: level-setup
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: level04
test-suite level05
import: level-setup
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: level05
test-suite level06
import: level-setup
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: level06