faker.test 357 B

123456789101112131415161718192021
  1. #!/usr/bin/env perl
  2. use strict;
  3. use warnings;
  4. use Test::More 'tests' => 4;
  5. is('expected','expected','Expected result OK');
  6. is('expected','unexpected','Unexpected result not OK');
  7. TODO: {
  8. local $TODO = 'Making sure this test is still marked fail, not todo pass';
  9. pass('whoop deee');
  10. }
  11. SKIP: {
  12. skip('cuz I can',1);
  13. fail('har har');
  14. }
  15. 0;