mirror of
https://github.com/robertkrimen/otto
synced 2025-09-28 18:45:22 +08:00
15 lines
209 B
Go
15 lines
209 B
Go
package otto
|
|
|
|
import (
|
|
"testing"
|
|
. "github.com/robertkrimen/terst"
|
|
)
|
|
|
|
func Test_issue5(t *testing.T) {
|
|
Terst(t)
|
|
|
|
test := runTest()
|
|
test(`'abc' === 'def'`, "false")
|
|
test(`'\t' === '\r'`, "false")
|
|
}
|