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