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.2.1.10 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.9 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.8 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.7 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.6 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.5 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.4 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.3 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.2 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.1 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.0 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.0.6 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.0.5 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.0.4 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.0.3 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.0.2 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.0.1 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.0.0 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.55 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.1.0.54 tracks/ocaml/exercises/rna-transcription/test.ml