Add parsing tests (#17)

This commit is contained in:
Dave Gallant
2021-01-30 18:38:52 -05:00
committed by GitHub
parent d539a6677a
commit d3c2279555
7 changed files with 158 additions and 5 deletions

6
go.mod
View File

@@ -4,6 +4,7 @@ go 1.15
require (
github.com/AlecAivazis/survey/v2 v2.2.7
github.com/fatih/color v1.10.0 // indirect
github.com/jszwec/csvutil v1.4.0
github.com/juju/errors v0.0.0-20200330140219-3fe23663418f
github.com/juju/testing v0.0.0-20201216035041-2be42bba85f3 // indirect
@@ -11,12 +12,13 @@ require (
github.com/mattn/go-runewidth v0.0.8 // indirect
github.com/nxadm/tail v1.4.6
github.com/olekukonko/tablewriter v0.0.4
github.com/rakyll/gotest v0.0.5 // indirect
github.com/rs/zerolog v1.20.0
github.com/showwin/speedtest-go v1.1.0
github.com/spf13/afero v1.5.1
github.com/spf13/cobra v1.1.1
github.com/stretchr/testify v1.6.1 // indirect
golang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634 // indirect
github.com/stretchr/testify v1.6.1
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
golang.org/x/text v0.3.4 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)