示例#1
0
 def test_remove(self):
     self.client.call = Mock(return_value='')
     c = Cluster(self.xml, self.client)
     assert c.remove(2) is None
示例#2
0
 def test_repr(self):
     c = Cluster(self.xml, self.client)
     assert c.__repr__() == '<oca.Cluster("Production")>'
示例#3
0
 def test_allocate(self):
     self.client.call = Mock(return_value=5)
     assert Cluster.allocate(self.client, self.xml) == 5