michael@0: function test() { michael@0: ok(true, "pass ok"); michael@0: is(true, true, "pass is"); michael@0: isnot(false, true, "pass isnot"); michael@0: ise(true, true, "pass ise"); michael@0: todo(false, "pass todo"); michael@0: todo_is(false, true, "pass todo_is"); michael@0: todo_isnot(true, true, "pass todo_isnot"); michael@0: info("info message"); michael@0: michael@0: var func = is; michael@0: func(true, 1, "pass indirect is"); michael@0: }