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.159 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.158 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.157 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.156 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.155 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.154 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.153 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.152 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.151 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.150 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.149 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.148 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.147 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.146 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.145 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.144 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.143 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.142 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.141 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.140 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj