mirror of
https://github.com/correl/elm.git
synced 2024-12-18 11:06:17 +00:00
Merge pull request #128 from duckmole/improve_pangram_tests
Improve pangram test
This commit is contained in:
commit
411219c42d
1 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,10 @@ tests =
|
||||||
\() ->
|
\() ->
|
||||||
Expect.equal False
|
Expect.equal False
|
||||||
(isPangram "a quick movement of the enemy will jeopardize five gunboats")
|
(isPangram "a quick movement of the enemy will jeopardize five gunboats")
|
||||||
|
, test "missing character 'z'" <|
|
||||||
|
\() ->
|
||||||
|
Expect.equal False
|
||||||
|
(isPangram "a quick movement of the enemy will jeopardixe five gunboats")
|
||||||
, test "another missing character 'x'" <|
|
, test "another missing character 'x'" <|
|
||||||
\() ->
|
\() ->
|
||||||
Expect.equal False
|
Expect.equal False
|
||||||
|
|
Loading…
Reference in a new issue