Advertisement
Guest User

Untitled

a guest
Jan 8th, 2017
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 1.23 KB | None | 0 0
  1. META.info
  2. {   "perl" : "6.c",
  3.     "name" : "Mofixes",
  4.     "version" : "0.0.1",
  5.     "description" : "A collection of ready to use *fixes",
  6.     "author" : "faraco",
  7.     "source-url" : "git://github.com/faraco/Mofixes.git",
  8.     "depends" : [ ],
  9.     "provides" : {
  10.       "Mofixes" : "Mofixes/lib//Mofixes.pm6"
  11.     },
  12.  
  13. t/01_meta.t
  14. #!perl6
  15.  
  16. use Test;
  17. use Test::META;
  18.  
  19. plan 1;
  20.  
  21. meta-ok();
  22.  
  23. done-testing;
  24.  
  25. # error
  26. t/01_meta.t ..
  27. 1..1
  28.     ok 1 - have a META file
  29.     not ok 2 - META parses okay
  30.  
  31.     # Failed test 'META parses okay'
  32.     # at site#sources/966C301257E8FC5BF5BCFCB4D59B327C400C2A29 (Test::META) line 79
  33.     # at 301: json requires object keys to be strings
  34.     1..2
  35.     # Looks like you failed 1 test of 2
  36. not ok 1 - Project META file is good
  37.  
  38. # Failed test 'Project META file is good'
  39. # at site#sources/966C301257E8FC5BF5BCFCB4D59B327C400C2A29 (Test::META) line 71
  40. # Looks like you failed 1 test of 1
  41. Dubious, test returned 1 (wstat 256, 0x100)
  42. Failed 1/1 subtests
  43.  
  44. Test Summary Report
  45. -------------------
  46. t/01_meta.t (Wstat: 256 Tests: 1 Failed: 1)
  47.   Failed test:  1
  48.   Non-zero exit status: 1
  49. Files=1, Tests=1,  1 wallclock secs ( 0.06 usr  0.00 sys +  0.55 cusr  0.07 csys =  0.68 CPU)
  50. Result: FAIL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement