faker.test 186 B

1234567891011
  1. #!/usr/bin/env perl
  2. use strict;
  3. use warnings;
  4. use Test::More 'tests' => 2;
  5. is('expected','expected','Expected result OK');
  6. is('expected','unexpected','Unexpected result not OK');
  7. 0;