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.180 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.179 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.178 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.177 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.176 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.175 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.174 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.173 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.172 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.171 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.170 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.169 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.167 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.166 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.165 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.164 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.163 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.162 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.161 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj
trackler-2.2.1.160 tracks/clojure/exercises/rna-transcription/test/rna_transcription_test.clj