Sha256: a4cb9399dc7f4ee9ae066858162993d0ea8a4949aa5aff31df247050d698dda6

Contents?: true

Size: 682 Bytes

Versions: 396

Compression:

Stored size: 682 Bytes

Contents

(ns rna-transcription-test
  (:require [clojure.test :refer [deftest is]]
            rna-transcription))

(deftest transcribes-cytosine-to-guanine
  (is (= "G" (rna-transcription/to-rna "C"))))

(deftest transcribes-guanine-to-cytosine
  (is (= "C" (rna-transcription/to-rna "G"))))

(deftest transcribes-adenine-to-uracil
  (is (= "U" (rna-transcription/to-rna "A"))))

(deftest it-transcribes-thymine-to-adenine
  (is (= "A" (rna-transcription/to-rna "T"))))

(deftest it-transcribes-all-nucleotides
  (is (= "UGCACCAGAAUU" (rna-transcription/to-rna "ACGTGGTCTTAA"))))

(deftest it-validates-dna-strands
  (is (thrown? AssertionError (rna-transcription/to-rna "XCGFGGTDTTAA"))))

Version data entries

396 entries across 396 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.138 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.137 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.136 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.135 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.134 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.133 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.132 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.131 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.130 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.129 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.128 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.127 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.126 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.125 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.124 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.123 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.122 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.121 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.120 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj