forked from flashcat/categraf
18 lines
423 B
Go
18 lines
423 B
Go
// Copyright 2018 Google Inc. All Rights Reserved.
|
|
// This file is available under the Apache license.
|
|
|
|
package code_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"flashcat.cloud/categraf/inputs/mtail/internal/runtime/code"
|
|
"flashcat.cloud/categraf/inputs/mtail/internal/testutil"
|
|
)
|
|
|
|
func TestInstrString(t *testing.T) {
|
|
expected := "{match 0 0}"
|
|
|
|
testutil.ExpectNoDiff(t, code.Instr{Opcode: code.Match, Operand: 0}.String(), expected)
|
|
}
|