summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/00-load.t7
-rw-r--r--t/00-pod-coverage.t5
-rw-r--r--t/00-pod.t5
-rw-r--r--t/00-prereqs.t4
4 files changed, 21 insertions, 0 deletions
diff --git a/t/00-load.t b/t/00-load.t
new file mode 100644
index 0000000..cd42d3e
--- /dev/null
+++ b/t/00-load.t
@@ -0,0 +1,7 @@
+use Test::More tests => 1;
+
+BEGIN {
+ use_ok('LDFM::MainController');
+}
+
+diag( "Testing LDFM $LDFM::MainController::VERSION" );
diff --git a/t/00-pod-coverage.t b/t/00-pod-coverage.t
new file mode 100644
index 0000000..2531190
--- /dev/null
+++ b/t/00-pod-coverage.t
@@ -0,0 +1,5 @@
+use Test::More;
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
+ if $@;
+all_pod_coverage_ok();
diff --git a/t/00-pod.t b/t/00-pod.t
new file mode 100644
index 0000000..aa819af
--- /dev/null
+++ b/t/00-pod.t
@@ -0,0 +1,5 @@
+use Test::More;
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD"
+ if $@;
+all_pod_files_ok();
diff --git a/t/00-prereqs.t b/t/00-prereqs.t
new file mode 100644
index 0000000..5d39ddf
--- /dev/null
+++ b/t/00-prereqs.t
@@ -0,0 +1,4 @@
+use Test::More;
+eval "use Test::Prereq::Build";
+plan skip_all => "Test::Prereq::Build required to test dependencies" if $@;
+prereq_ok();