mirror of
https://github.com/correl/elm.git
synced 2024-12-22 11:09:08 +00:00
skip all tests after the first
This commit is contained in:
parent
3c93d1f54c
commit
528b355c81
1 changed files with 32 additions and 24 deletions
|
@ -11,28 +11,36 @@ tests =
|
|||
[ test "empty string" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram ""
|
||||
, test "isogram with only lower case characters" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "isogram"
|
||||
, test "word with one duplicated character" <|
|
||||
\() ->
|
||||
Expect.equal False <| isIsogram "eleven"
|
||||
, test "longest reported english isogram" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "subdermatoglyphic"
|
||||
, test "word with duplicated character in mixed case" <|
|
||||
\() ->
|
||||
Expect.equal False <| isIsogram "Alphabet"
|
||||
, test "hypothetical isogrammic word with hyphen" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "thumbscrew-japingly"
|
||||
, test "isogram with duplicated non letter character" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "Hjelmqvist-Gryb-Zock-Pfund-Wax"
|
||||
, test "made-up name that is an isogram" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "Emily Jung Schwartzkopf"
|
||||
, test "duplicated character in the middle" <|
|
||||
\() ->
|
||||
Expect.equal False <| isIsogram "accentor"
|
||||
, skip <|
|
||||
test "isogram with only lower case characters" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "isogram"
|
||||
, skip <|
|
||||
test "word with one duplicated character" <|
|
||||
\() ->
|
||||
Expect.equal False <| isIsogram "eleven"
|
||||
, skip <|
|
||||
test "longest reported english isogram" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "subdermatoglyphic"
|
||||
, skip <|
|
||||
test "word with duplicated character in mixed case" <|
|
||||
\() ->
|
||||
Expect.equal False <| isIsogram "Alphabet"
|
||||
, skip <|
|
||||
test "hypothetical isogrammic word with hyphen" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "thumbscrew-japingly"
|
||||
, skip <|
|
||||
test "isogram with duplicated non letter character" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "Hjelmqvist-Gryb-Zock-Pfund-Wax"
|
||||
, skip <|
|
||||
test "made-up name that is an isogram" <|
|
||||
\() ->
|
||||
Expect.equal True <| isIsogram "Emily Jung Schwartzkopf"
|
||||
, skip <|
|
||||
test "duplicated character in the middle" <|
|
||||
\() ->
|
||||
Expect.equal False <| isIsogram "accentor"
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue