elm/exercises/nucleotide-count/tests/Tests.elm

28 lines
971 B
Elm
Raw Normal View History

2017-05-27 17:56:31 +00:00
module Tests exposing (..)
2016-03-17 01:36:38 +00:00
import Test exposing (..)
import Expect
import NucleotideCount exposing (nucleotideCounts, version)
2016-03-17 01:36:38 +00:00
2016-03-17 01:36:38 +00:00
tests : Test
tests =
describe "NucleotideCount"
[ test "the solution is for the correct version of the test" <|
\() -> Expect.equal 2 version
, test "empty dna strand has no nucleotides" <|
\() ->
Expect.equal { a = 0, t = 0, c = 0, g = 0 }
(nucleotideCounts "")
, skip <|
test "repetitive sequence has only guanine" <|
\() ->
Expect.equal { a = 0, t = 0, c = 0, g = 8 }
(nucleotideCounts "GGGGGGGG")
, skip <|
test "counts all nucleotides" <|
\() ->
Expect.equal { a = 20, t = 21, c = 12, g = 17 }
(nucleotideCounts "AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC")
]