Created
September 19, 2014 06:26
-
-
Save yuu-ito/2cb923c2b855d74853b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# http://docs.python.jp/2/library/unittest.html | |
# https://pypi.python.org/pypi/pyrg | |
import random | |
import unittest | |
class TestSequenceFunctions(unittest.TestCase): | |
def setUp(self): | |
self.seq = range(10) | |
def test_shuffle(self): | |
# make sure the shuffled sequence does not lose any elements | |
random.shuffle(self.seq) | |
self.seq.sort() | |
self.assertEqual(self.seq, range(10)) | |
# should raise an exception for an immutable sequence | |
self.assertRaises(TypeError, random.shuffle, (1, 2, 3)) | |
def test_choice(self): | |
element = random.choice(self.seq) | |
self.assertTrue(element in self.seq) | |
def test_sample(self): | |
with self.assertRaises(ValueError): | |
random.sample(self.seq, 20) | |
for element in random.sample(self.seq, 5): | |
self.assertTrue(element in self.seq) | |
# if __name__ == '__main__': | |
# unittest.main() | |
suite = unittest.TestLoader().loadTestsFromTestCase(TestSequenceFunctions) | |
unittest.TextTestRunner(verbosity=1).run(suite) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment