neoneo-go/pkg/smartcontract/callflag/call_flags_test.go
2021-01-14 17:52:09 +03:00

14 lines
317 B
Go

package callflag
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestCallFlag_Has(t *testing.T) {
require.True(t, AllowCall.Has(AllowCall))
require.True(t, (AllowCall | AllowNotify).Has(AllowCall))
require.False(t, (AllowCall).Has(AllowCall|AllowNotify))
require.True(t, All.Has(ReadOnly))
}