Skip to content
Snippets Groups Projects
Commit 616becbf authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Replace shell test script by Perl TAP stuff, add test target to Makefile

parent 382fc245
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,10 @@ uninstall:
rm -f ${basedir}/bin/efa
rm -f ${basedir}/share/man/man1/efa.1
test:
@prove test
clean:
rm -rf build
.PHONY: install uninstall clean
.PHONY: install uninstall test clean
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
use Test::More;
use Test::Compile;
all_pl_files_ok('bin/efa');
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
use Test::More;
use Test::Pod;
all_pod_files_ok('bin/efa');
#!/bin/sh -e
podchecker -warnings -warnings bin/*
perl -c bin/efa
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment