13 lines
159 B
Go
13 lines
159 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestCommandHandler_Status(t *testing.T) {
|
||
|
a := assert.New(t)
|
||
|
a.True(true)
|
||
|
}
|