tracks/haskell/exercises/simple-cipher/test/Tests.hs in trackler-2.1.0.9 vs tracks/haskell/exercises/simple-cipher/test/Tests.hs in trackler-2.1.0.10
- old
+ new
@@ -7,12 +7,9 @@
main = hspecWith defaultConfig {configFastFail = True} specs
specs :: Spec
specs = describe "simple-cipher" $ do
- -- As of 2016-09-16, there was no reference file
- -- for the test cases in `exercism/x-common`.
-
it "no-op encode" $ do
caesarEncode "a" ['a'..'z'] `shouldBe` ['a'..'z']
caesarEncode (repeat 'a') ['a'..'z'] `shouldBe` ['a'..'z']
it "no-op decode" $ do