mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-06 03:15:01 -06:00
29 lines
669 B
Elixir
29 lines
669 B
Elixir
defmodule RnaTranscriptionTest do
|
|
use ExUnit.Case
|
|
|
|
@tag :pending
|
|
test "transcribes guanine to cytosine" do
|
|
assert RnaTranscription.to_rna('G') == 'C'
|
|
end
|
|
|
|
@tag :pending
|
|
test "transcribes cytosine to guanine" do
|
|
assert RnaTranscription.to_rna('C') == 'G'
|
|
end
|
|
|
|
@tag :pending
|
|
test "transcribes thymidine to adenine" do
|
|
assert RnaTranscription.to_rna('T') == 'A'
|
|
end
|
|
|
|
@tag :pending
|
|
test "transcribes adenine to uracil" do
|
|
assert RnaTranscription.to_rna('A') == 'U'
|
|
end
|
|
|
|
@tag :pending
|
|
test "it transcribes all dna nucleotides to rna equivalents" do
|
|
assert RnaTranscription.to_rna('ACGTGGTCTTAA') == 'UGCACCAGAAUU'
|
|
end
|
|
end
|