Skip to content

Commit

Permalink
add back relevant tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Cohen committed May 3, 2013
1 parent 9e16d22 commit b9e4514
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,27 @@ def setUp(self):
u"\u00C1"
]


def tearDown(self):
pass

def test_asciidammit(self):
for s in self.mixed_strings:
utils.asciidammit(s)

def test_asciionly(self):
for s in self.mixed_strings:
# ascii only only runs on strings
s = utils.asciidammit(s)
utils.asciionly(s)

def test_fullProcess(self):
for s in self.mixed_strings:
utils.full_process(s)

def test_fullProcessForceAscii(self):
for s in self.mixed_strings:
utils.full_process(s, force_ascii=True)

class RatioTest(unittest.TestCase):

def setUp(self):
Expand Down

0 comments on commit b9e4514

Please sign in to comment.