We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f46dd9c + b449920 commit f006e4cCopy full SHA for f006e4c
exercises/matrix/test/Tests.hs
@@ -69,16 +69,3 @@ specs = do
69
70
it "flatten" $
71
flatten (intMatrix "1 2\n3 4") `shouldBe` vector [1, 2, 3, 4]
72
-
73
- it "matrix of chars" $
74
- fromString "'f' 'o' 'o'\n'b' 'a' 'r'" `shouldBe` fromList ["foo", "bar"]
75
76
- it "matrix of strings" $
77
- fromString "\"this one\"\n\"may be tricky!\""
78
- `shouldBe` fromList [ ["this one" ]
79
- , ["may be tricky!"] ]
80
81
- it "matrix of strings 2" $
82
- fromString "\"this one\" \"one\" \n\"may be tricky!\" \"really tricky\""
83
- `shouldBe` fromList [ ["this one" , "one" ]
84
- , ["may be tricky!", "really tricky"] ]
0 commit comments