elm/exercises/nucleotide-count/NucleotideCountTests.elm

40 lines
949 B
Elm
Raw Normal View History

module Main (..) where
2016-03-17 01:36:38 +00:00
import Task
import Console
import ElmTest exposing (..)
import NucleotideCount exposing (nucleotideCounts, version)
2016-03-17 01:36:38 +00:00
2016-03-17 01:36:38 +00:00
tests : Test
tests =
suite
"NucleotideCount"
[ test
"the solution is for the correct version of the test"
(assertEqual 2 version)
, test
"empty dna strand has no nucleotides"
(assertEqual
{ a = 0, t = 0, c = 0, g = 0 }
(nucleotideCounts "")
)
, test
"repetitive-sequence-has-only-guanosine"
(assertEqual
{ a = 0, t = 0, c = 0, g = 8 }
(nucleotideCounts "GGGGGGGG")
)
, test
"counts all nucleotides"
(assertEqual
{ a = 20, t = 21, c = 12, g = 17 }
(nucleotideCounts "AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC")
)
]
2016-03-17 01:36:38 +00:00
port runner : Signal (Task.Task x ())
port runner =
Console.run (consoleRunner tests)