aboutsummaryrefslogtreecommitdiff
path: root/t/whole-01.t
diff options
context:
space:
mode:
Diffstat (limited to 't/whole-01.t')
-rw-r--r--t/whole-01.t18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/whole-01.t b/t/whole-01.t
new file mode 100644
index 0000000..10c9204
--- /dev/null
+++ b/t/whole-01.t
@@ -0,0 +1,18 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+use Test::More qw(no_plan);
+use Path::Class;
+
+chdir file(__FILE__)->parent->parent->stringify;
+
+system($^X,qw(-Ilib webcoso.pl -s t/test-site/src/ -d t/test-site/output/ -I t/test-site/common/ --clean))
+ and die "Problems running webcoso.pl (clean): $?\n";
+
+system($^X,qw(-Ilib webcoso.pl -s t/test-site/src/ -d t/test-site/output/ -I t/test-site/common/))
+ and die "Problems running webcoso.pl: $?\n";
+
+is(system(qw(diff -r -x .svn t/test-site/output/ t/test-site-output/)),0,'output as expected');
+
+system($^X,qw(-Ilib webcoso.pl -s t/test-site/src/ -d t/test-site/output/ -I t/test-site/common/ --clean))
+ and die "Problems running webcoso.pl (clean): $?\n";