move the CSV tax table into its own subdirectory

This commit is contained in:
Colin Kuskie 2008-02-18 19:48:42 +00:00
parent 215031bb4e
commit 95a327ea62
2 changed files with 6 additions and 1 deletions

View file

@ -227,7 +227,7 @@ eval { $taxer->importTaxData('/path/to/nowhere'); };
like($@, qr{/path/to/nowhere could not be found},
'importTaxData: error handling for file that does not exist in the filesystem');
my $taxFile = WebGUI::Test->getTestCollateralPath('taxTable.csv');
my $taxFile = WebGUI::Test->getTestCollateralPath('taxTables/goodTaxTable.csv');
SKIP: {
skip 'Root will cause this test to fail since it does not obey file permissions', 1

View file

@ -0,0 +1,5 @@
field,value,taxRate
country,USA,0.1
state,Wisconsin,5.0
city,Madcity-Baby,0.5
code,53701,0.5
1 field value taxRate
2 country USA 0.1
3 state Wisconsin 5.0
4 city Madcity-Baby 0.5
5 code 53701 0.5