Lines Matching refs:passed

183 ok !$failed->is_ok, '... and the tests should not have passed';
257 my $passed = shift @results;
258 isa_ok $passed, $TEST;
259 can_ok $passed, 'todo_passed';
260 is $passed->type, 'test', 'TODO tests should parse correctly';
261 ok $passed->is_test, '... and it should identify itself as a test';
262 is $passed->ok, 'not ok', '... and it should have the correct ok()';
263 ok $passed->is_ok, '... and TODO tests should always pass';
264 ok !$passed->is_actual_ok,
266 is $passed->number, 7, '... and have the correct passed number';
267 is $passed->description, '- Gandalf wins. Game over.',
269 is $passed->directive, 'TODO', '... and should have the correct directive';
270 is $passed->explanation, "'bout time!",
272 ok !$passed->has_skip, '... and it is not a SKIPped passed';
273 ok $passed->has_todo, '... but it is a TODO succeeded';
274 is $passed->as_string,
277 is $passed->raw, "not ok 7 - Gandalf wins. Game over. # TODO 'bout time!",
279 ok !$passed->todo_passed,
284 can_ok $parser, 'passed';
285 is $parser->passed, 6,
286 '... and we should have the correct number of passed tests';
287 is_deeply [ $parser->passed ], [ 1, 2, 3, 5, 6, 7 ],
288 '... and get a list of the passed tests';
296 '... and we should have the correct number of actually passed tests';
298 '... and get a list of the actually passed tests';
432 is scalar $parser->passed, 2,
433 'Empty junk lines should not affect the correct number of tests passed';
995 qr/Panic: planned test count [(]1001[)] did not equal sum of passed [(]0[)] and failed [(]2[)] tests!/,