Show
Ignore:
Timestamp:
10/22/07 01:48:24 (2 years ago)
Author:
eevee
Message:

Rewrote some of the test names in the Pokemon search test to focus on what I'm testing, not how I'm testing it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • veekun/trunk/t/dex-search-moves.t

    r348 r349  
    2727search_ok { name => 'fire', class => 'physical' }, 
    2828    [qw/ 7 221 424 /], 
    29     "Damage class (with name)"; 
     29    "Damage class (+ name)"; 
    3030 
    3131search_ok { class => 'special', type => 'dark' }, 
    3232    [qw/ 399 /], 
    33     "Type (with damage class)"; 
     33    "Type (+ damage class)"; 
    3434 
    3535search_ok { type => 'dragon', generation => 1 }, 
    3636    [qw/ 200 225 239/], 
    37     "Generation (with type)"; 
     37    "Generation (+ type)"; 
    3838 
    3939search_ok { type => 'steel', generation => 0 }, 
     
    6767search_ok { name => 'fire', sort => 'name' }, 
    6868    [qw/ 126 424 7 83 221 /], 
    69     "Sorting (with name)"; 
     69    "Sorting (+ name)"; 
    7070 
    7171# TODO: This is remarkably similar to the Pokemon search sub!  Generalize and