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.90 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.89 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.88 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.87 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.86 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.85 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.84 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.83 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.82 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.81 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.80 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.79 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.78 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.77 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.76 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.75 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.74 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.73 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.72 tracks/ocaml/exercises/rna-transcription/test.ml
trackler-2.2.1.71 tracks/ocaml/exercises/rna-transcription/test.ml