1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-12 20:27:30 +08:00
otto/bug_test.go
Robert Krimen 20d2e8bba6 gofmt
Ugh.
2013-01-25 09:59:42 -08:00

15 lines
203 B
Go

package otto
import (
. "github.com/robertkrimen/terst"
"testing"
)
func Test_issue5(t *testing.T) {
Terst(t)
test := runTest()
test(`'abc' === 'def'`, "false")
test(`'\t' === '\r'`, "false")
}