Skip to content

Commit

Permalink
test echo
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincobain2000 committed Jan 28, 2024
1 parent 7d45e09 commit 6048cca
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/pkg/echo_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package pkg

import (
"embed"
"testing"

"github.com/stretchr/testify/assert"
)

func TestNewEcho(t *testing.T) {
var baseURL embed.FS
var publicDir embed.FS
e := NewEcho("", publicDir, baseURL)
assert.NotNil(t, e)
}

0 comments on commit 6048cca

Please sign in to comment.