12 lines
163 B
Go
12 lines
163 B
Go
package context
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func Test_Sanity(t *testing.T) {
|
|
require.NotEqual(t, CometInfoKey, ExecModeKey)
|
|
}
|