Tizen 2.0 Release
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / nodeunit / node_modules / tap / test / simple-harness-test-with-plan.js
1 var tap = require("../")
2   , test = tap.test
3   , plan = tap.plan
4
5 plan(2)
6
7 test("trivial success", function (t) {
8   t.ok(true, "it works")
9   t.end()
10 })
11
12 test("two tests", function (t) {
13   t.equal(255, 0xFF, "math should work")
14   t.notOk(false, "false should not be ok")
15   t.end()
16 })