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.30 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.29 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.28 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.27 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.26 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.25 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.24 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.23 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.22 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.21 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.20 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.19 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.18 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.17 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.16 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.15 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.14 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.13 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.12 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.11 tracks/ocaml/exercises/rna-transcription/test.ml