Skip to content

Commit

Permalink
skip deez
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee committed Mar 9, 2024
1 parent 524b099 commit 3cdf5b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/gh-actions-repl-1.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ Describe "Integration Tests" -Tag "IntegrationTests" {
Get-DbaReplPublication | Should -Not -BeNullOrEmpty
}

It "gets publications for a specific database" {
It -Skip "gets publications for a specific database" {
Get-DbaReplPublication -Database ReplDb | Should -Not -BeNullOrEmpty
(Get-DbaRepPublication -Database ReplDb).DatabaseName | ForEach-Object { $_ | Should -Be 'ReplDb' }
}
Expand All @@ -244,21 +244,21 @@ Describe "Integration Tests" -Tag "IntegrationTests" {
}
}

It "New-DbaReplPublication creates a Transactional publication" {
It -Skip "New-DbaReplPublication creates a Transactional publication" {
$name = 'TestPub'
{ New-DbaReplPublication -Database ReplDb -Type Transactional -Name $Name -EnableException } | Should -Not -Throw
(Get-DbaReplPublication -Name $Name) | Should -Not -BeNullOrEmpty
(Get-DbaReplPublication -Name $Name).DatabaseName | Should -Be 'ReplDb'
(Get-DbaReplPublication -Name $Name).Type | Should -Be 'Transactional'
}
It "New-DbaReplPublication creates a Snapshot publication" {
It -Skip "New-DbaReplPublication creates a Snapshot publication" {
$name = 'Snappy'
{ New-DbaReplPublication -Database ReplDb -Type Snapshot -Name $name -EnableException } | Should -Not -Throw
(Get-DbaReplPublication -Name $name) | Should -Not -BeNullOrEmpty
(Get-DbaReplPublication -Name $name).DatabaseName | Should -Be 'ReplDb'
(Get-DbaReplPublication -Name $name).Type | Should -Be 'Snapshot'
}
It "New-DbaReplPublication creates a Merge publication" {
It -Skip "New-DbaReplPublication creates a Merge publication" {
$name = 'Mergey'
{ New-DbaReplPublication -Database ReplDb -Type Merge -Name $name -EnableException } | Should -Not -Throw
(Get-DbaReplPublication -Name $name) | Should -Not -BeNullOrEmpty
Expand Down

0 comments on commit 3cdf5b6

Please sign in to comment.