コード例 #1
0
ファイル: KataFiveTest.py プロジェクト: bdarfler/CodeKata
 def test_contains(self):
     bloom_filter = BloomFilter()
     bloom_filter.insert("hello")
     self.assertTrue(bloom_filter.contains("hello"), 'filter should contain "hello"')
コード例 #2
0
ファイル: KataFiveTest.py プロジェクト: bdarfler/CodeKata
 def test_does_not_contains(self):
     bloom_filter = BloomFilter()
     bloom_filter.insert("world")
     self.assertFalse(bloom_filter.contains("hello"), 'filter should not contain "hello"')