예제 #1
0
파일: tests.py 프로젝트: gregglind/zamboni
 def test_process_groups(self):
     add(self.callback, 1)
     add(self.callback, 4)
     process()
     eq_(set(self.callback.call_args[0][0]), set([1, 4]))
예제 #2
0
파일: tests.py 프로젝트: superduper/zamboni
 def test_process_groups(self):
     add(self.callback, 1)
     add(self.callback, 4)
     process()
     eq_(set(self.callback.call_args[0][0]), set([1, 4]))
예제 #3
0
파일: tests.py 프로젝트: gregglind/zamboni
 def test_process(self):
     add(self.callback, 1)
     process()
     assert self.callback.called
예제 #4
0
파일: tests.py 프로젝트: superduper/zamboni
 def test_process(self):
     add(self.callback, 1)
     process()
     assert self.callback.called