blob: 3d91439ea2cfa4267e6fa66ceaf68e02d8bf2393 (
plain)
1
2
3
4
5
6
7
8
|
function test() {
ok(false, "fail ok");
is(true, false, "fail is");
isnot(true, true, "fail isnot");
todo(true, "fail todo");
todo_is(true, true, "fail todo_is");
todo_isnot(true, false, "fail todo_isnot");
}
|