Skip to content

Commit f212288

Browse files
authored
Merge pull request #12 from swaggo/improve_code_coverage
add unit tests
2 parents 01d66cd + 84ababb commit f212288

File tree

4 files changed

+1542
-3
lines changed

4 files changed

+1542
-3
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: go
22

33
go:
4-
- 1.9.x
5-
- 1.10.x
6-
- 1.11.x
4+
- 1.13.x
5+
- 1.14.x
76

87
before_install:
98
- go get -t -v ./...

go.mod

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module github.com/swaggo/buffalo-swagger
2+
3+
go 1.15
4+
5+
require (
6+
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
7+
github.com/gobuffalo/buffalo v0.16.26
8+
github.com/gobuffalo/envy v1.9.0
9+
github.com/gobuffalo/mw-contenttype v0.0.0-20190129203934-2554e742333b
10+
github.com/gobuffalo/mw-forcessl v0.0.0-20180802152810-73921ae7a130
11+
github.com/gobuffalo/mw-paramlogger v0.0.0-20190129202837-395da1998525
12+
github.com/gobuffalo/packr v1.25.0
13+
github.com/gobuffalo/suite v2.8.2+incompatible
14+
github.com/gobuffalo/x v0.0.0-20190224155809-6bb134105960
15+
github.com/rs/cors v1.8.0
16+
github.com/stretchr/testify v1.7.0
17+
github.com/swaggo/swag v1.7.0
18+
github.com/unrolled/secure v0.0.0-20190103195806-76e6d4e9b90c
19+
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985
20+
)

0 commit comments

Comments
 (0)