JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
clean up include paths and docs
[wfpl.git] / test / tar_test.php
1 <?php
2
3 require_once(__DIR__.'/../'.'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 ?>