~percona-toolkit-dev/percona-toolkit/fix-password-comma-bug-886077

« back to all changes in this revision

Viewing changes to t/pt-trend/pt-trend.t

  • Committer: Daniel Nichter
  • Date: 2011-08-19 17:27:07 UTC
  • Revision ID: daniel@percona.com-20110819172707-0i8dgwp2kaqeyiit
Remove pt-trend.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env perl
2
 
 
3
 
BEGIN {
4
 
   die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
5
 
      unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
6
 
   unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
7
 
};
8
 
 
9
 
use strict;
10
 
use warnings FATAL => 'all';
11
 
use English qw(-no_match_vars);
12
 
use Test::More tests => 1;
13
 
 
14
 
use PerconaTest;
15
 
require "$trunk/bin/pt-trend";
16
 
ok(1, 'dummy test');
17
 
 
18
 
# #############################################################################
19
 
# Done.
20
 
# #############################################################################
21
 
exit;