summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-09-08 17:33:49 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-09-08 17:33:49 +0200
commit77380123923c266739675723182e718ee1ef3b7c (patch)
treea8b90d69109dc37d5cc7a5c738265678fad93a71
parent71cb57d5266acaf1b9c8f5e7eb6bf4aa382a372b (diff)
Add initial tests
-rwxr-xr-xt/10-pod-coverage.t8
-rw-r--r--t/20-vrr.t11
2 files changed, 19 insertions, 0 deletions
diff --git a/t/10-pod-coverage.t b/t/10-pod-coverage.t
new file mode 100755
index 0000000..5fe4faa
--- /dev/null
+++ b/t/10-pod-coverage.t
@@ -0,0 +1,8 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use 5.010;
+use Test::More;
+use Test::Pod;
+
+all_pod_files_ok();
diff --git a/t/20-vrr.t b/t/20-vrr.t
new file mode 100644
index 0000000..5b5b499
--- /dev/null
+++ b/t/20-vrr.t
@@ -0,0 +1,11 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use 5.010;
+
+use Test::More tests => 2;
+
+BEGIN {
+ use_ok('Travel::Status::DE::VRR');
+}
+require_ok('Travel::Status::DE::VRR');