summaryrefslogtreecommitdiff
path: root/t/notest_withtest.t
blob: d74b057c05cebe72bcf2c5ef8c5e628778a096a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
use warnings;

{
  package Foo;
  use Test::Deep::NoTest;

  sub check_this {
      return eq_deeply($_[1], []);
  }
}

use Test::More 0.88;
use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';

use Test::Deep;

ok(Foo->check_this([]), 'notest 1');
ok(! Foo->check_this({}), 'notest 2');
cmp_deeply([], [], 'got cmp_deeply');

done_testing;