Skip to content

Commit

Permalink
added api category test
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Nov 16, 2023
1 parent 4a6c15a commit da7b829
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions compress/api_category_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package compress

import (
"testing"
)

func TestGetCategories(t *testing.T) {
//
c, err := GetCompress()

Check failure on line 9 in compress/api_category_test.go

View workflow job for this annotation

GitHub Actions / build (1.20.x)

c declared and not used

Check failure on line 9 in compress/api_category_test.go

View workflow job for this annotation

GitHub Actions / build (1.21.x)

c declared and not used
if err != nil {
t.Fatalf(err.Error())
}
// need to be finish
//c.GetCategories()
//c.IsDebug()
}

0 comments on commit da7b829

Please sign in to comment.