Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: Unit testing OS rich code

by Voronich (Hermit)
on Oct 13, 2011 at 13:18 UTC ( [id://931231]=note: print w/replies, xml ) Need Help??


in reply to Re: Unit testing OS rich code
in thread Unit testing OS rich code

I really don't much care about the timestamp. I'm using touch as the quickest easiest way to create an empty file.
Me

Replies are listed 'Best First'.
Re^3: Unit testing OS rich code
by BrowserUk (Patriarch) on Oct 13, 2011 at 13:34 UTC
    the quickest easiest way to create an empty file.

    Quickest? Definitely not. Easiest? Your call :)

    cmpthese 1, { a=>q[ qx[ touch junka.$_ ] for 1 .. 1000 ], b=>q[ do{ open my $f, ">junkb.$_" } for 1 .. 1000 ], };; s/iter a b a 8.83 -- -95% b 0.421 1997% --

    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

      Certainly quickest for the programmer. This has to create 5 sentinel files every 3 months.

      Love that profiling snippet. Gonna have to pull that for meeting arguments ;)

      Me
Re^3: Unit testing OS rich code
by eyepopslikeamosquito (Archbishop) on Oct 17, 2011 at 01:59 UTC

    I'm using touch as the quickest easiest way to create an empty file
    Are you seriously arguing that using:
    `touch $file`
    to create an empty file should be preferred to, for example:
    { open(my $fh, '>', $file) or die "error creating empty '$file': $!"; }
    on the grounds that it is "quicker and easier" to write?

    If you are that stretched for time, how on earth do you expect to find time to write your proposed test mock framework?

      Good grief. I'm in fact not "seriously arguing" anything at all, least of all what someone 'should' be doing.
      Me

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-19 01:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found