Something went wrong on our end
Select Git revision
utils_test.go
-
Josh Brooks authoredJosh Brooks authored
any_test.go NaN GiB
///////////////////////////////////////////////////////////////////////////////
// Copyright © 2020 xx network SEZC //
// //
// Use of this source code is governed by a license that can be found in the //
// LICENSE file //
///////////////////////////////////////////////////////////////////////////////
package switchboard
import (
"gitlab.com/xx_network/primitives/id"
"testing"
)
//tests that AnyUser returns the correct user
func TestAnyUser(t *testing.T) {
au := AnyUser()
if !au.Cmp(&id.ZeroUser) {
t.Errorf("Wrong user returned from AnyUser")
}
}