Skip to content

Commit

Permalink
bug(IGNORE): issue/3227 IGNORE() deletes ignored records on some plat…
Browse files Browse the repository at this point in the history
…forms
  • Loading branch information
tlimoncelli committed Dec 18, 2024
1 parent 7f477d8 commit 3da0424
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions integrationTest/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2351,11 +2351,29 @@ func makeTests() []*TestGroup {
a("testdefined", "9.9.9.9"),
ignore("testignore", "", ""),
).ExpectNoChanges(),
tc("VERIFY PREVIOUS",
a("testignore", "8.8.8.8"),
a("testdefined", "9.9.9.9"),
).ExpectNoChanges(),

tc("Verify nothing changed",
a("testignore", "8.8.8.8"),
a("testdefined", "9.9.9.9"),
).ExpectNoChanges(),
tc("VERIFY PREVIOUS",
a("testignore", "8.8.8.8"),
a("testdefined", "9.9.9.9"),
).ExpectNoChanges(),

tc("ignore with change",
//a("testignore", "8.8.8.8"),
a("testdefined", "2.2.2.2"),
ignore("testignore", "", ""),
),
tc("VERIFY PREVIOUS",
a("testignore", "8.8.8.8"),
a("testdefined", "9.9.9.9"),
).ExpectNoChanges(),
),

// OVH features
Expand Down

0 comments on commit 3da0424

Please sign in to comment.