Exemplo n.º 1
0
 def test_get_datastore_get_single_datastore_that_does_not_exist(self):
     self.assertEqual(get_datastore(datastore_id=uuid4()), None)
Exemplo n.º 2
0
 def test_get_datastore_get_single_datastore(self):
     self.assertEqual(get_datastore(datastore_id=self.test_datastore1_obj.id), self.test_datastore1_obj)
Exemplo n.º 3
0
 def test_get_datastore_get_all_datastores_of_user_without_datastores(self):
     self.assertEqual(len(get_datastore(user=self.test_user2_obj)), 0)
Exemplo n.º 4
0
 def test_get_datastore_get_all_datastores_without_user_nor_datastores(self):
     self.assertEqual(get_datastore(), None)
Exemplo n.º 5
0
 def test_get_datastore_get_all_datastores_of_user(self):
     self.assertEqual(len(get_datastore(user=self.test_user_obj)), 2)