def test_get_account_by_name_not_exists(self):
     account = self.setup_account()
     found = StorageUtilities.get_storage_account_by_name(account.name + "break")
     self.assertIsNone(found)
Beispiel #2
0
 def test_get_account_by_name_not_exists(self):
     account = self.setup_account()
     found = StorageUtilities.get_storage_account_by_name(account.name + "break")
     self.assertIsNone(found)
 def test_get_account_by_name(self):
     account = self.setup_account()
     found = StorageUtilities.get_storage_account_by_name(account.name)
     self.assertEqual(found.id, account.id)
Beispiel #4
0
 def test_get_account_by_name(self):
     account = self.setup_account()
     found = StorageUtilities.get_storage_account_by_name(account.name)
     self.assertEqual(found.id, account.id)