Example #1
0
File: tests.py Project: thoas/nydus
 def test_groupable_delete_commands(self):
     command = EventualCommand('delete', ['foo'])
     other = EventualCommand('delete', ['bar'])
     self.assertEqual(can_group_commands(command, other), True)
Example #2
0
File: tests.py Project: 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)
Example #3
0
File: tests.py Project: 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)
Example #4
0
File: tests.py Project: 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)
Example #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)
Example #6
0
 def test_groupable_delete_commands(self):
     command = EventualCommand('delete', ['foo'])
     other = EventualCommand('delete', ['bar'])
     self.assertEqual(can_group_commands(command, other), True)
Example #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)
Example #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)
Example #9
0
File: tests.py Project: tupy/nydus
 def test_groupable_get_commands(self):
     command = EventualCommand('get', ['foo'])
     other = EventualCommand('get', ['bar'])
     self.assertEquals(can_group_commands(command, other), True)