Sha256: d9fea8afb50dea09d5493444b0dd428830b680cfe989695426f1ce8942c2ed9d

Contents?: true

Size: 866 Bytes

Versions: 151

Compression:

Stored size: 866 Bytes

Contents

open Core
open OUnit2

let char_of_variant = function
  | `A -> 'A' | `C -> 'C' | `G -> 'G' | `T -> 'T' | `U -> 'U'
let printer l = List.map ~f:char_of_variant l |> String.of_char_list
let ae exp got _test_ctxt = assert_equal ~printer exp got

let tests =
  ["transcribes empty list">::
    ae [] (Rna_transcription.to_rna []);
   "transcribes cytidine">::
    ae [`G] (Rna_transcription.to_rna [`C]);
   "transcribes guanosine">::
    ae [`C] (Rna_transcription.to_rna [`G]);
   "transcribes adenosie">::
    ae [`U] (Rna_transcription.to_rna [`A]);
   "transcribes thymidine">::
    ae [`A] (Rna_transcription.to_rna [`T]);
   "transcribes multiple">::
    ae [`U; `G; `C; `A; `C; `C; `A; `G; `A; `A; `U; `U]
       (Rna_transcription.to_rna [`A; `C; `G; `T; `G; `G; `T; `C; `T; `T; `A; `A])
  ]

let () =
  run_test_tt_main ("rna-transcription tests" >::: tests)

Version data entries

151 entries across 151 versions & 1 rubygems

Version Path
trackler-2.1.0.32 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.31 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.30 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.29 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.28 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.27 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.26 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.25 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.24 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.23 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.22 tracks/ocaml/exercises/rna-transcription/test.ml