Well, presumably, the data has to enter the program from somewhere. That is the place you want to modify what your data is. Instead of modifying the script that does the processing, modify the data that the script will process. This also has the side-benefit of helping you understand your data more. Maybe, it's too complicated or too simple.

This is, in the general, called "Creating Your Test Environment", and it should be one of the first things a developer does when working on an application. For, if you cannot verify that your change(s) do what they should, how do you know you did the right thing?

As for testing very specific parts of a program, you may want to pull those parts out and test them independently. You can always use MockObjects to give it the scaffolding it needs. If you cannot do this step in a simple manner, then that is a "Red Flag"™ that should be dealt with through refactoring.

Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.


In reply to Re^3: Delete all hash keys except for n of them by dragonchild
in thread Delete all hash keys except for n of them by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.