Exemplo n.º 1
0
Arquivo: tests.py Projeto: thoas/nydus
 def test_groupable_delete_commands(self):
     command = EventualCommand('delete', ['foo'])
     other = EventualCommand('delete', ['bar'])
     self.assertEqual(can_group_commands(command, other), True)
Exemplo n.º 2
0
Arquivo: tests.py Projeto: thoas/nydus
 def test_ungroupable_delete_commands(self):
     command = EventualCommand('delete', ['foo'], {'timeout': 1})
     other = EventualCommand('delete', ['bar'], {'timeout': 2})
     self.assertEqual(can_group_commands(command, other), False)
Exemplo n.º 3
0
Arquivo: tests.py Projeto: thoas/nydus
 def test_groupable_set_commands(self):
     command = EventualCommand('set', ['foo', 1])
     other = EventualCommand('set', ['bar', 2])
     self.assertEqual(can_group_commands(command, other), True)
Exemplo n.º 4
0
Arquivo: tests.py Projeto: thoas/nydus
 def test_ungroupable_set_commands(self):
     command = EventualCommand('set', ['foo', 1], {'timeout': 1})
     other = EventualCommand('set', ['bar', 2], {'timeout': 2})
     self.assertEqual(can_group_commands(command, other), False)
Exemplo n.º 5
0
 def test_ungroupable_delete_commands(self):
     command = EventualCommand('delete', ['foo'], {'timeout': 1})
     other = EventualCommand('delete', ['bar'], {'timeout': 2})
     self.assertEqual(can_group_commands(command, other), False)
Exemplo n.º 6
0
 def test_groupable_delete_commands(self):
     command = EventualCommand('delete', ['foo'])
     other = EventualCommand('delete', ['bar'])
     self.assertEqual(can_group_commands(command, other), True)
Exemplo n.º 7
0
 def test_ungroupable_set_commands(self):
     command = EventualCommand('set', ['foo', 1], {'timeout': 1})
     other = EventualCommand('set', ['bar', 2], {'timeout': 2})
     self.assertEqual(can_group_commands(command, other), False)
Exemplo n.º 8
0
 def test_groupable_set_commands(self):
     command = EventualCommand('set', ['foo', 1])
     other = EventualCommand('set', ['bar', 2])
     self.assertEqual(can_group_commands(command, other), True)
Exemplo n.º 9
0
Arquivo: tests.py Projeto: tupy/nydus
 def test_groupable_get_commands(self):
     command = EventualCommand('get', ['foo'])
     other = EventualCommand('get', ['bar'])
     self.assertEquals(can_group_commands(command, other), True)