forked from emilybache/GildedRose-Refactoring-Kata
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add texttest fixture for Perl 5 code
- Loading branch information
Showing
4 changed files
with
79 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
#!/usr/bin/env perl | ||
|
||
use strict; | ||
use warnings; | ||
|
||
use GildedRose; | ||
use Item; | ||
|
||
print 'OMGHAI!', "\n"; | ||
my $items = [ | ||
Item->new( | ||
name => '+5 Dexterity Vest', | ||
sell_in => 10, | ||
quality => 20 | ||
), | ||
Item->new( | ||
name => 'Aged Brie', | ||
sell_in => 2, | ||
quality => 0 | ||
), | ||
Item->new( | ||
name => 'Elixir of the Mongoose', | ||
sell_in => 5, | ||
quality => 7 | ||
), | ||
Item->new( | ||
name => 'Sulfuras, Hand of Ragnaros', | ||
sell_in => 0, | ||
quality => 80 | ||
), | ||
Item->new( | ||
name => 'Sulfuras, Hand of Ragnaros', | ||
sell_in => -1, | ||
quality => 80 | ||
), | ||
Item->new( | ||
name => 'Backstage passes to a TAFKAL80ETC concert', | ||
sell_in => 15, | ||
quality => 20 | ||
), | ||
Item->new( | ||
name => 'Backstage passes to a TAFKAL80ETC concert', | ||
sell_in => 10, | ||
quality => 49 | ||
), | ||
Item->new( | ||
name => 'Backstage passes to a TAFKAL80ETC concert', | ||
sell_in => 5, | ||
quality => 49 | ||
), | ||
Item->new( # This Conjured item does not work properly yet | ||
name => 'Conjured Mana Cake', | ||
sell_in => 3, | ||
quality => 6 | ||
), | ||
]; | ||
|
||
my $days = 2; | ||
if ( $#ARGV >= 0 ) { | ||
$days = $ARGV[0]; | ||
} | ||
|
||
my $gilded_rose = GildedRose->new( items => $items ); | ||
for my $day ( 0 .. $days ) { | ||
print "-------- day $day --------", "\n"; | ||
print 'name, sellIn, quality', "\n"; | ||
for my $item ( @{$items} ) { | ||
print $item->to_string(), "\n"; | ||
} | ||
print "\n"; | ||
$gilded_rose->update_quality(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# If your .class files are somewhere else, add the path to the list | ||
CLASSPATH:${TEXTTEST_CHECKOUT}/Java:${TEXTTEST_CHECKOUT}/Java/bin | ||
PERL5OPT:-I${TEXTTEST_CHECKOUT}/perl |