X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=t%2FBookseller.t;h=360a0ad44477af9a6935137b501ccf0f098273b4;hb=087b9665ae7fe7a88ed30c8a541c8f382029315f;hp=a1d9a1a083c6564eb521084ace820866a9808e57;hpb=ccc8db346df4b6993aff09d4f79eaf92978c767a;p=koha_fer diff --git a/t/Bookseller.t b/t/Bookseller.t old mode 100644 new mode 100755 index a1d9a1a083..360a0ad444 --- a/t/Bookseller.t +++ b/t/Bookseller.t @@ -1,5 +1,14 @@ -BEGIN { $| = 1; print "1..1\n"; } -END {print "not ok 1\n" unless $loaded;} -use C4::Bookseller; -$loaded = 1; -print "ok 1\n"; +#!/usr/bin/perl +# +# This Koha test module is a stub! +# Add more tests here!!! + +use strict; +use warnings; + +use Test::More tests => 1; + +BEGIN { + use_ok('C4::Bookseller'); +} +