Skip to content

Commit

Permalink
scrabble-score: remove non-ASCII cases
Browse files Browse the repository at this point in the history
  • Loading branch information
petertseng authored and rbasso committed Feb 1, 2017
1 parent 2ae21ea commit 785a3e5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions exercises/scrabble-score/test/Tests.hs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ specs = describe "scrabble-score" $ do
where
assertion = scoreWord input `shouldBe` fromIntegral expected

-- Test cases adapted from `exercism/x-common/scrabble-score.json` on 2017-01-31.
-- Test cases adapted from `exercism/x-common/scrabble-score.json` on 2017-02-01.

data Case = Case { description :: String
, input :: String
Expand Down Expand Up @@ -67,10 +67,6 @@ cases = [ Case { description = "lowercase letter"
, input = "pinata"
, expected = 8
}
, Case { description = "non-english letter is not scored"
, input = "piñata"
, expected = 7
}
, Case { description = "empty input"
, input = ""
, expected = 0
Expand Down

0 comments on commit 785a3e5

Please sign in to comment.