summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2024-05-18 12:13:45 -0600
committermo khan <mo@mokhan.ca>2024-05-18 12:13:45 -0600
commit41fe3a65860c6d9572e4dde4682d8233a3bd3ba3 (patch)
treede36e942848a5b21a8254d360fad43636602036a /go.mod
parentcf1abd6a058af31659fe8692ae771d0f5d63626b (diff)
test: start to add unit tests
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod12
1 files changed, 10 insertions, 2 deletions
diff --git a/go.mod b/go.mod
index 44e95a7..c78d8ee 100644
--- a/go.mod
+++ b/go.mod
@@ -2,6 +2,14 @@ module gitlab.com/mokhax/stanuki
go 1.22
-require github.com/xlgmokha/x v0.0.0-20221023040112-0610463739d1
+require (
+ github.com/stretchr/testify v1.8.0
+ github.com/xlgmokha/x v0.0.0-20221023040112-0610463739d1
+)
-require github.com/google/jsonapi v1.0.0 // indirect
+require (
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/google/jsonapi v1.0.0 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ gopkg.in/yaml.v3 v3.0.1 // indirect
+)