diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2022-03-31 18:29:20 -0400 |
|---|---|---|
| committer | Dave Henderson <dhenderson@gmail.com> | 2022-05-06 22:58:04 -0400 |
| commit | 254de4e4e97fe1550d7092bbf25a8a6c31f0fd74 (patch) | |
| tree | 43130543e5ddb045db63a8b90d689c44ceb17e6d /internal/tests/integration/integration_test.go | |
| parent | 2f294d7884667800579e3ac3a16241e2df8698bb (diff) | |
Rename to CIDR*, generate docs
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'internal/tests/integration/integration_test.go')
| -rw-r--r-- | internal/tests/integration/integration_test.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/internal/tests/integration/integration_test.go b/internal/tests/integration/integration_test.go index 7b8b7694..b1fd3c63 100644 --- a/internal/tests/integration/integration_test.go +++ b/internal/tests/integration/integration_test.go @@ -33,6 +33,15 @@ func inOutTest(t *testing.T, i, o string) { assert.Equal(t, o, stdout) } +func inOutTestExperimental(t *testing.T, i, o string) { + t.Helper() + + stdout, stderr, err := cmd(t, "--experimental", "-i", i).run() + assert.NoError(t, err) + assert.Equal(t, "", stderr) + assert.Equal(t, o, stdout) +} + func inOutContains(t *testing.T, i, o string) { t.Helper() |
