test/integration/storage_account.rb in fog-azure-rm-0.1.2 vs test/integration/storage_account.rb in fog-azure-rm-0.2.0
- old
+ new
@@ -40,13 +40,20 @@
storage_account_avail = storage.storage_accounts.check_name_availability('test-storage')
puts 'Storage account available' if storage_account_avail
puts 'Storage account unavailale' unless storage_account_avail
########################################################################################################################
- ############### Create A Standard Storage Account of Replication: LRS (Locally-redundant storage) ###############
+ ###################### Check Subnet Exists? ######################
########################################################################################################################
lrs_storage_account = "lrs#{current_time}"
+
+ flag = storage.storage_accounts.check_storage_account_exists('TestRG-SA', lrs_storage_account)
+ puts "Storage Account doesn't exist." unless flag
+
+ ########################################################################################################################
+ ############### Create A Standard Storage Account of Replication: LRS (Locally-redundant storage) ###############
+ ########################################################################################################################
storage_account = storage.storage_accounts.create(
name: lrs_storage_account,
location: LOCATION,
resource_group: 'TestRG-SA'