Skip to content

Update rna_transcription_test.py #1040

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions exercises/rna-transcription/rna_transcription_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.0

class DNATests(unittest.TestCase):
def test_transcribes_guanine_to_cytosine(self):
self.assertEqual(to_rna('G'), 'C')


def test_transcribes_cytosine_to_guanine(self):
self.assertEqual(to_rna('C'), 'G')


def test_transcribes_guanine_to_cytosine(self):
self.assertEqual(to_rna('G'), 'C')

def test_transcribes_thymine_to_adenine(self):
self.assertEqual(to_rna('T'), 'A')

Expand Down