ci(coverage): add basic test for main.go file to get coverage CI step passing

This commit is contained in:
2020-11-01 16:44:21 +00:00
parent 2530bea25b
commit 69056295b9
3 changed files with 13 additions and 1 deletions

11
main_test.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_errDone(t *testing.T) {
assert.EqualError(t, errDone, "done")
}