UNPKG

true

Version:

A JavaScript port of the Unix utility 'true'. Returns the Boolean value `true`

13 lines (9 loc) 216 B
var t = require('../index') , assert = require("assert") , tests; tests = { 'test that true returns the Boolean value `true`': function () { assert.strictEqual(true, t()); } }; module.exports = tests;