JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
3c28d409c17aad1157432e91b60c2177df1b708d
[wfpl.git] / test / tar_test.php
1 <?php
2
3 require_once(__DIR__.'/'.'code/wfpl/tar.php');
4
5 # Unfortunately, I don't know how to set the suggested filename for downloads,
6 # so you'll have to deal with that yourself.
7 make_tar('foo', array(
8         'foo.txt' => 'foo two three four',
9         'README' => 'this is a test...',
10         'Makefile' => 'all: or_nothing'));
11
12 ?>