Skip to content

Commit 91b639c

Browse files
committed
add message defaults to .ok() and .notOk()
1 parent 5060034 commit 91b639c

File tree

6 files changed

+58
-9
lines changed

6 files changed

+58
-9
lines changed

lib/test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ Test.prototype.ok
302302
= Test.prototype.assert
303303
= function (value, msg, extra) {
304304
this._assert(value, {
305-
message : msg,
305+
message : defined(msg, 'should be truthy'),
306306
operator : 'ok',
307307
expected : true,
308308
actual : value,
@@ -315,7 +315,7 @@ Test.prototype.notOk
315315
= Test.prototype.notok
316316
= function (value, msg, extra) {
317317
this._assert(!value, {
318-
message : msg,
318+
message : defined(msg, 'should be falsy'),
319319
operator : 'notOk',
320320
expected : false,
321321
actual : value,

test/default-messages.js

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
var tap = require('tap');
2+
var spawn = require('child_process').spawn;
3+
var trim = require('string.prototype.trim');
4+
5+
tap.test('default messages', function (t) {
6+
t.plan(1);
7+
8+
var tc = tap.createConsumer();
9+
10+
var rows = [];
11+
tc.on('data', function (r) { rows.push(r) });
12+
tc.on('end', function () {
13+
var rs = rows.map(function (r) {
14+
if (r && typeof r === 'object') {
15+
return { id : r.id, ok : r.ok, name : trim(r.name) };
16+
}
17+
else return r;
18+
});
19+
t.same(rs, [
20+
'TAP version 13',
21+
'default messages',
22+
{ id: 1, ok: true, name: 'should be truthy' },
23+
{ id: 2, ok: true, name: 'should be falsy' },
24+
{ id: 3, ok: true, name: 'should be equal' },
25+
{ id: 4, ok: true, name: 'should not be equal' },
26+
{ id: 5, ok: true, name: 'should be equivalent' },
27+
{ id: 6, ok: true, name: 'should be equivalent' },
28+
{ id: 7, ok: true, name: 'should be equivalent' },
29+
'tests 7',
30+
'pass 7',
31+
'ok'
32+
]);
33+
});
34+
35+
var ps = spawn(process.execPath, [ __dirname + '/messages/defaults.js' ]);
36+
ps.stdout.pipe(tc);
37+
});

test/exit.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ tap.test('more planned in a second test', function (t) {
126126
t.same(rs, [
127127
'TAP version 13',
128128
'first',
129-
{ id: 1, ok: true, name: '(unnamed assert)' },
129+
{ id: 1, ok: true, name: 'should be truthy' },
130130
'second',
131-
{ id: 2, ok: true, name: '(unnamed assert)' },
131+
{ id: 2, ok: true, name: 'should be truthy' },
132132
{ id: 3, ok: false, name: 'plan != count' },
133133
'tests 3',
134134
'pass 2',

test/messages/defaults.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
var test = require('../../');
2+
3+
test('default messages', function (t) {
4+
t.plan(7);
5+
t.ok(true);
6+
t.notOk(false);
7+
t.equal(true, true);
8+
t.notEqual(true, false);
9+
t.deepEqual(true, true);
10+
t.deepLooseEqual(true, true);
11+
t.notDeepLooseEqual(true, false);
12+
});

test/nested-sync-noplan-noend.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ tap.test('nested sync test without plan or end', function (tt) {
2121
'TAP version 13',
2222
'nested without plan or end',
2323
'first',
24-
{ id: 1, ok: true, name: '(unnamed assert)' },
24+
{ id: 1, ok: true, name: 'should be truthy' },
2525
'second',
26-
{ id: 2, ok: true, name: '(unnamed assert)' },
26+
{ id: 2, ok: true, name: 'should be truthy' },
2727
'tests 2',
2828
'pass 2',
2929
'ok'

test/nested.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ tap.test('array test', function (tt) {
2727
{ id: 4, ok: true, name: 'should be equivalent' },
2828
{ id: 5, ok: true, name: 'should be equivalent' },
2929
'inside test',
30-
{ id: 6, ok: true, name: '(unnamed assert)' },
31-
{ id: 7, ok: true, name: '(unnamed assert)' },
30+
{ id: 6, ok: true, name: 'should be truthy' },
31+
{ id: 7, ok: true, name: 'should be truthy' },
3232
'another',
33-
{ id: 8, ok: true, name: '(unnamed assert)' },
33+
{ id: 8, ok: true, name: 'should be truthy' },
3434
'tests 8',
3535
'pass 8',
3636
'ok'

0 commit comments

Comments
 (0)