You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/event/event_sys_test.go

18 lines
310 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package event
import (
"testing"
"github.com/stretchr/testify/require"
)
func Test_SysEvent_EventType(t *testing.T) {
t.Run("simple", func(t *testing.T) {
e := sysEvent{}
require.Equal(t, string(SystemType), e.EventType())
})
}