File: 001_basic.t

package info (click to toggle)
libsvn-notify-mirror-perl 0.03800-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 168 kB
  • ctags: 25
  • sloc: perl: 1,161; makefile: 38
file content (15 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl 
require SVN::Notify;
use Test::More;
require "t/coretests.pm";

SKIP: {
    my $SVNNOTIFY = $ENV{'SVNNOTIFY'} || SVN::Notify->find_exe('svnnotify');
    skip "Cannot locate svnnotify binary!", 54
    	unless defined($SVNNOTIFY);

    reset_all_tests();
    run_tests($SVNNOTIFY);
    reset_all_tests();
    run_tests("$SVNNOTIFY --minimal");
}