Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Paun Vladimir Alexandru
mo101-agile-tdd
Commits
eb5b110a
Commit
eb5b110a
authored
Mar 25, 2017
by
Vladimir Paun
Browse files
rem comm
parent
ba54b054
Changes
1
Hide whitespace changes
Inline
Side-by-side
testBinary.py
View file @
eb5b110a
...
...
@@ -4,22 +4,7 @@ from binary import Binary
class
Test
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
binary
=
Binary
(
6
)
test_binary_init_int
():
def
test_binary_init_int
(
self
):
binary
=
Binary
(
6
)
assert
int
(
binary
)
==
6
# # 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()
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment