Should not have been commited
authorMike Jackson <michaelj@epcc.ed.ac.uk>
Tue, 2 Apr 2013 16:09:56 +0000 (09:09 -0700)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 04:21:15 +0000 (21:21 -0700)
testing/test_dna.py [deleted file]

diff --git a/testing/test_dna.py b/testing/test_dna.py
deleted file mode 100755 (executable)
index 113a32f..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-from dna import calculate_weight
-
-from dna import NUCLEOTIDES
-
-def test_a():
-    assert calculate_weight('A') == NUCLEOTIDES['A']
-
-def test_g():
-    assert calculate_weight('G') == NUCLEOTIDES['G']
-
-def test_ga():
-    assert calculate_weight('GA') == NUCLEOTIDES['G'] + NUCLEOTIDES['A']