Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Quieting Test::More

by kcott (Archbishop)
on Jul 04, 2017 at 08:03 UTC ( [id://1194138]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Test::More tests => 2;
    
    ...
        is(1, 1, 'Test: 1 == 1');
        isnt(1, 0, 'Test: 1 != 0');
    }
    
  2. or download this
    $ export PM_1194120_DEBUG=0
    $ prove -v pm_1194120.t
    ...
    Result: PASS
    $ prove pm_1194120.t > /dev/null
    $
    
  3. or download this
    $ export PM_1194120_DEBUG=1
    $ prove -v pm_1194120.t
    ...
    # Debug statement #1 (1 == 1): TRUE
    # Debug statement #2 (1 == 0): FALSE
    $
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1194138]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-16 14:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found