Lines Matching full:run
15 sub {$cap->ok(1, "run pass")}
20 $test->is_eq($prem, "", "run pass no prem");
21 $test->is_num(scalar (@results), 1, "run pass result count");
25 $test->is_eq($res->{name}, "run pass", "run pass name");
26 $test->is_eq($res->{ok}, 1, "run pass ok");
27 $test->is_eq($res->{actual_ok}, 1, "run pass actual_ok");
28 $test->is_eq($res->{reason}, "", "run pass reason");
29 $test->is_eq($res->{type}, "", "run pass type");
30 $test->is_eq($res->{diag}, "", "run pass diag");
31 $test->is_num($res->{depth}, 0, "run pass depth");
36 sub {$cap->ok(0, "run fail")}
41 $test->is_eq($prem, "", "run fail no prem");
42 $test->is_num(scalar (@results), 1, "run fail result count");
46 $test->is_eq($res->{name}, "run fail", "run fail name");
47 $test->is_eq($res->{actual_ok}, 0, "run fail actual_ok");
48 $test->is_eq($res->{ok}, 0, "run fail ok");
49 $test->is_eq($res->{reason}, "", "run fail reason");
50 $test->is_eq($res->{type}, "", "run fail type");
51 $test->is_eq($res->{diag}, "", "run fail diag");
52 $test->is_num($res->{depth}, 0, "run fail depth");
99 sub {$cap->diag("run diag")}
104 $test->is_eq($prem, "run diag\n", "run diag prem");
105 $test->is_num(scalar (@results), 0, "run diag result count");
121 $test->is_eq($prem, "", "run multi no prem");
122 $test->is_num(scalar (@results), 2, "run multi result count");
126 $test->is_eq($res_pass->{name}, "multi pass", "run multi pass name");
127 $test->is_eq($res_pass->{actual_ok}, 1, "run multi pass actual_ok");
128 $test->is_eq($res_pass->{ok}, 1, "run multi pass ok");
129 $test->is_eq($res_pass->{reason}, "", "run multi pass reason");
130 $test->is_eq($res_pass->{type}, "", "run multi pass type");
132 "run multi pass diag");
133 $test->is_num($res_pass->{depth}, 0, "run multi pass depth");
137 $test->is_eq($res_fail->{name}, "multi fail", "run multi fail name");
138 $test->is_eq($res_pass->{actual_ok}, 1, "run multi fail actual_ok");
139 $test->is_eq($res_fail->{ok}, 0, "run multi fail ok");
140 $test->is_eq($res_pass->{reason}, "", "run multi fail reason");
141 $test->is_eq($res_pass->{type}, "", "run multi fail type");
142 $test->is_eq($res_fail->{diag}, "multi fail diag\n", "run multi fail diag");
143 $test->is_num($res_pass->{depth}, 0, "run multi fail depth");