示例#1
0
文件: tests.py 项目: thoas/nydus
 def test_groupable_delete_commands(self):
     command = EventualCommand('delete', ['foo'])
     other = EventualCommand('delete', ['bar'])
     self.assertEqual(can_group_commands(command, other), True)
示例#2
0
文件: tests.py 项目: 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)
示例#3
0
文件: tests.py 项目: 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)
示例#4
0
文件: tests.py 项目: 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)
示例#5
0
文件: tests.py 项目: jusbrasil/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)
示例#6
0
文件: tests.py 项目: jusbrasil/nydus
 def test_groupable_delete_commands(self):
     command = EventualCommand('delete', ['foo'])
     other = EventualCommand('delete', ['bar'])
     self.assertEqual(can_group_commands(command, other), True)
示例#7
0
文件: tests.py 项目: jusbrasil/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)
示例#8
0
文件: tests.py 项目: jusbrasil/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)
示例#9
0
文件: tests.py 项目: tupy/nydus
 def test_groupable_get_commands(self):
     command = EventualCommand('get', ['foo'])
     other = EventualCommand('get', ['bar'])
     self.assertEquals(can_group_commands(command, other), True)