Sha256: 6438cba30d021440320af839afaa3750cbc3c7d67939a097fc4070edb853b1dc

Contents?: true

Size: 840 Bytes

Versions: 69

Compression:

Stored size: 840 Bytes

Contents

if !System.get_env("EXERCISM_TEST_EXAMPLES") do
  Code.load_file("rna_transcription.exs", __DIR__)
end

ExUnit.start()
ExUnit.configure(exclude: :pending, trace: true)

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

Version data entries

69 entries across 69 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs
trackler-2.2.1.118 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs
trackler-2.2.1.117 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs
trackler-2.2.1.116 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs
trackler-2.2.1.115 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs
trackler-2.2.1.114 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs
trackler-2.2.1.113 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs
trackler-2.2.1.111 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs
trackler-2.2.1.110 tracks/elixir/exercises/rna-transcription/rna_transcription_test.exs