(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestGetNetworkFirewallCodemod(t *testing.T) { |
| 13 | codemod := getNetworkFirewallCodemod() |
| 14 | |
| 15 | // Verify codemod metadata |
| 16 | assert.Equal(t, "network-firewall-migration", codemod.ID) |
| 17 | assert.Equal(t, "Migrate network.firewall to sandbox.agent", codemod.Name) |
| 18 | assert.NotEmpty(t, codemod.Description) |
| 19 | assert.Equal(t, "0.1.0", codemod.IntroducedIn) |
| 20 | require.NotNil(t, codemod.Apply) |
| 21 | } |
| 22 | |
| 23 | func TestNetworkFirewallCodemod_RemovesFirewallTrue(t *testing.T) { |
| 24 | codemod := getNetworkFirewallCodemod() |
nothing calls this directly
no test coverage detected