mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
19 lines
280 B
Go
19 lines
280 B
Go
package cli_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"gh.tarampamp.am/error-pages/internal/cli"
|
|
)
|
|
|
|
func TestNewApp(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
app := cli.NewApp("appName")
|
|
|
|
assert.NoError(t, app.Run(context.Background(), []string{""}))
|
|
}
|