awl/main_test.go
Sam Therapy 0845ae2a82
All checks were successful
continuous-integration/drone/push Build is passing
refactor: Make tests less ugly (#102)
Reviewed-on: #102
Reviewed-by: grumbulon <grumbulon@grumbulon.xyz>
2022-09-21 23:08:31 +00:00

41 lines
636 B
Go

// SPDX-License-Identifier: BSD-3-Clause
package main
import (
"testing"
"github.com/stefansundin/go-zflag"
"gotest.tools/v3/assert"
)
func TestRun(t *testing.T) {
t.Parallel()
args := [][]string{
{"awl", "+yaml", "@1.1.1.1"},
{"awl", "+short", "@1.1.1.1"},
}
for _, test := range args {
test := test
t.Run("", func(t *testing.T) {
t.Parallel()
_, code, err := run(test)
assert.NilError(t, err)
assert.Equal(t, code, 0)
})
}
}
func TestHelp(t *testing.T) {
t.Parallel()
args := []string{"awl", "-h"}
_, code, err := run(args)
assert.ErrorIs(t, err, zflag.ErrHelp)
assert.Equal(t, code, 1)
}