mirror of
https://github.com/1f349/tulip.git
synced 2024-11-09 22:42:53 +00:00
12 lines
166 B
Go
12 lines
166 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestUserAuth_IsGuest(t *testing.T) {
|
||
|
var u UserAuth
|
||
|
assert.True(t, u.IsGuest())
|
||
|
}
|