1#!/usr/bin/perl
2require SVN::Notify;
3use Test::More;
4require "t/coretests.pm";
5
6SKIP: {
7    my $SVNNOTIFY = $ENV{'SVNNOTIFY'} || SVN::Notify->find_exe('svnnotify');
8    skip "Cannot locate svnnotify binary!", 54
9    	unless defined($SVNNOTIFY);
10
11    reset_all_tests();
12    run_tests($SVNNOTIFY);
13    reset_all_tests();
14    run_tests("$SVNNOTIFY --minimal");
15}
16