Exemplo n.º 1
0
 def test_many_with_two_same_should_return_true(self):
     assert_that(has_duplications([1, 2, 3, 1]))
Exemplo n.º 2
0
 def test_with_one_should_return_false(self):
     assert_that(not has_duplications([1]))
Exemplo n.º 3
0
 def test_many_different_should_return_false(self):
     assert_that(not has_duplications([1, 2, 3]))
Exemplo n.º 4
0
 def test_empty_should_return_false(self):
     assert_that(not has_duplications([]))