|
1 | 1 | module Main (main) where
|
2 | 2 |
|
3 |
| -import ASCII.Char (Char (..), allCharacters) |
4 | 3 | import ASCII.Group
|
5 |
| -import Control.Monad (Monad (..), when) |
6 |
| -import Data.Bool (not) |
| 4 | + |
| 5 | +import Test.Hspec |
| 6 | + |
| 7 | +import ASCII.Char (Char (..), allCharacters) |
| 8 | +import Data.Bool (Bool(..)) |
7 | 9 | import Data.Foldable (all)
|
8 | 10 | import Data.Function (($))
|
9 | 11 | import Data.List (filter, length)
|
10 |
| -import Hedgehog |
11 |
| - ( Property, |
12 |
| - assert, |
13 |
| - checkParallel, |
14 |
| - discover, |
15 |
| - property, |
16 |
| - withTests, |
17 |
| - (===), |
18 |
| - ) |
19 |
| -import System.Exit (exitFailure) |
20 | 12 | import System.IO (IO)
|
21 | 13 |
|
22 | 14 | main :: IO ()
|
23 |
| -main = checkParallel $$(discover) >>= \ok -> when (not ok) exitFailure |
24 |
| - |
25 |
| -prop_letter :: Property |
26 |
| -prop_letter = |
27 |
| - withTests 1 $ |
28 |
| - property $ |
29 |
| - charGroup CapitalLetterA === Printable |
30 |
| - |
31 |
| -prop_control :: Property |
32 |
| -prop_control = |
33 |
| - withTests 1 $ |
34 |
| - property $ |
35 |
| - charGroup EndOfTransmission === Control |
36 |
| - |
37 |
| -prop_not_printable :: Property |
38 |
| -prop_not_printable = |
39 |
| - withTests 1 $ |
40 |
| - property $ |
41 |
| - assert $ |
42 |
| - not $ |
43 |
| - inGroup Printable EndOfTransmission |
44 |
| - |
45 |
| -prop_is_control :: Property |
46 |
| -prop_is_control = |
47 |
| - withTests 1 $ |
48 |
| - property $ |
49 |
| - assert $ |
50 |
| - inGroup Control EndOfTransmission |
| 15 | +main = hspec $ do |
| 16 | + it "" $ charGroup CapitalLetterA `shouldBe` Printable |
| 17 | + it "" $ charGroup EndOfTransmission `shouldBe` Control |
| 18 | + it "" $ inGroup Printable EndOfTransmission `shouldBe` False |
| 19 | + it "" $ inGroup Control EndOfTransmission `shouldBe` True |
51 | 20 |
|
52 |
| --- It is perhaps surprising that space is considered a |
53 |
| --- "printable" character, since it does not visibly appear. |
54 |
| -prop_space_is_printable :: Property |
55 |
| -prop_space_is_printable = |
56 |
| - withTests 1 $ |
57 |
| - property $ |
58 |
| - charGroup Space === Printable |
| 21 | + it "It is perhaps surprising that space is considered a\ |
| 22 | + \ \"printable\" character, since it does not visibly appear." $ |
| 23 | + charGroup Space `shouldBe` Printable |
59 | 24 |
|
60 |
| --- It is perhaps surprising that horizontal tab is not |
61 |
| --- in the same category as space. |
62 |
| -prop_horizontal_tab_is_control :: Property |
63 |
| -prop_horizontal_tab_is_control = |
64 |
| - withTests 1 $ |
65 |
| - property $ |
66 |
| - charGroup HorizontalTab === Control |
| 25 | + it "It is perhaps surprising that horizontal tab is not\ |
| 26 | + \ in the same category as space." $ |
| 27 | + charGroup HorizontalTab `shouldBe` Control |
67 | 28 |
|
68 |
| -prop_various_printables :: Property |
69 |
| -prop_various_printables = |
70 |
| - withTests 1 $ |
71 |
| - property $ |
72 |
| - assert $ |
73 |
| - all (inGroup Printable) [CapitalLetterA, SmallLetterZ, Digit4, Tilde] |
| 29 | + it "" $ |
| 30 | + all (inGroup Printable) [CapitalLetterA, SmallLetterZ, Digit4, Tilde] |
| 31 | + `shouldBe` True |
74 | 32 |
|
75 |
| -prop_various_controls :: Property |
76 |
| -prop_various_controls = |
77 |
| - withTests 1 $ |
78 |
| - property $ |
79 |
| - assert $ |
80 |
| - all (inGroup Control) [Null, Substitute, UnitSeparator, Delete] |
| 33 | + it "" $ |
| 34 | + all (inGroup Control) [Null, Substitute, UnitSeparator, Delete] |
| 35 | + `shouldBe` True |
81 | 36 |
|
82 |
| -prop_count_printables :: Property |
83 |
| -prop_count_printables = |
84 |
| - withTests 1 $ |
85 |
| - property $ |
86 |
| - length (filter (inGroup Printable) allCharacters) === 95 |
| 37 | + it "" $ length (filter (inGroup Printable) allCharacters) `shouldBe` 95 |
87 | 38 |
|
88 |
| -prop_count_controls :: Property |
89 |
| -prop_count_controls = |
90 |
| - withTests 1 $ |
91 |
| - property $ |
92 |
| - length (filter (inGroup Control) allCharacters) === 33 |
| 39 | + it "" $ length (filter (inGroup Control) allCharacters) `shouldBe` 33 |
0 commit comments