Sha256: 09d21c2a0345e14a1b97f4c6127016ab0626e309a4dcef6717e56fcb7b7eb073
Contents?: true
Size: 1.06 KB
Versions: 42
Compression:
Stored size: 1.06 KB
Contents
port module Main exposing (..) import Test.Runner.Node exposing (run, TestProgram) import Json.Encode exposing (Value) import Test exposing (..) import Expect import NucleotideCount exposing (nucleotideCounts, version) 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 "") , test "repetitive sequence has only guanine" <| \() -> Expect.equal { a = 0, t = 0, c = 0, g = 8 } (nucleotideCounts "GGGGGGGG") , test "counts all nucleotides" <| \() -> Expect.equal { a = 20, t = 21, c = 12, g = 17 } (nucleotideCounts "AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC") ] main : TestProgram main = run emit tests port emit : ( String, Value ) -> Cmd msg
Version data entries
42 entries across 42 versions & 1 rubygems