effef393d0
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/tags/release-1.5.0@4306 a1ca3aef-8c08-0410-bb20-df032aa958be
18 linhas
484 B
Raku
18 linhas
484 B
Raku
# Before `make install' is performed this script should be runnable with
|
|
# `make test'. After `make install' it should work as `perl test.pl'
|
|
|
|
#########################
|
|
|
|
# change 'tests => 1' to 'tests => last_test_to_print';
|
|
|
|
use Test;
|
|
BEGIN { plan tests => 1 };
|
|
use CUPS;
|
|
ok(1); # If we made it this far, we're ok.
|
|
|
|
#########################
|
|
|
|
# Insert your test code below, the Test module is use()ed here so read
|
|
# its man page ( perldoc Test ) for help writing this test script.
|
|
|