-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Stabilize for AzureMigrateLocal commands and their tests #28755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: bernard-migrate-migrate-to-autorest-v4
Are you sure you want to change the base?
Changes from 3 commits
f3df0b9
18680d5
70bde37
1129663
48ace31
04ce81c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,22 +12,22 @@ while(-not $mockingPath) { | |
| . ($mockingPath | Select-Object -First 1).FullName | ||
|
|
||
| Describe 'Get-AzMigrateDiscoveredServer' { | ||
| It 'List' { | ||
| It 'List' -Skip { | ||
| $machines = Get-AzMigrateDiscoveredServer -ResourceGroupName $env.migResourceGroup -ProjectName $env.migProjectName -SubscriptionId $env.migSubscriptionId | ||
| $machines.Count | Should -BeGreaterOrEqual 1 | ||
| } | ||
|
|
||
| It 'ListInSite' { | ||
| It 'ListInSite' -Skip { | ||
|
||
| $machines = Get-AzMigrateDiscoveredServer -ApplianceName $env.migApplianceName -ResourceGroupName $env.migResourceGroup -ProjectName $env.migProjectName -SubscriptionId $env.migSubscriptionId | ||
| $machines.Count | Should -BeGreaterOrEqual 1 | ||
| } | ||
|
|
||
| It 'Get' { | ||
| It 'Get' -Skip { | ||
| $machines = Get-AzMigrateDiscoveredServer -Name $env.migVMwareMachineName -ResourceGroupName $env.migResourceGroup -ProjectName $env.migProjectName -SubscriptionId $env.migSubscriptionId | ||
| $machines.Name | Should -Be $env.migVMwareMachineName | ||
| } | ||
|
|
||
| It 'GetInSite' { | ||
| It 'GetInSite' -Skip { | ||
| $machines = Get-AzMigrateDiscoveredServer -Name $env.migVMwareMachineName -ApplianceName $env.migApplianceName -ResourceGroupName $env.migResourceGroup -ProjectName $env.migProjectName -SubscriptionId $env.migSubscriptionId | ||
| $machines.Name | Should -Be $env.migVMwareMachineName | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.