~sandbox-developers/mysql-sandbox/replication-topo

« back to all changes in this revision

Viewing changes to t/01_modules.t

  • Committer: Darren L. Oldag
  • Date: 2012-05-18 13:32:43 UTC
  • mfrom: (18.1.34 mysql-sandbox3)
  • Revision ID: darren.oldag@oracle.com-20120518133243-56dx6osnuvrsqxvh
merge up to the tip of lp:mysql-sandbox

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use strict;
2
2
use warnings;
3
 
use Test::More tests => 3;
4
 
BEGIN { use_ok('MySQL::Sandbox') };
5
 
BEGIN { use_ok('MySQL::Sandbox::Scripts') };
6
 
BEGIN { use_ok('MySQL::Sandbox::Recipes') };
 
3
use Test::More ;
 
4
 
 
5
BEGIN {
 
6
    if ($^O =~ /^(?:mswin|win)/i) {
 
7
        diag 'NOT SUPPORTED ON WINDOWS';
 
8
        plan skip_all => 'This module is not for Windows';        
 
9
    }
 
10
    else {
 
11
        plan tests => 3;
 
12
        use_ok('MySQL::Sandbox') ;
 
13
        use_ok('MySQL::Sandbox::Scripts') ;
 
14
        use_ok('MySQL::Sandbox::Recipes') ;
 
15
    }
 
16
}
 
17
#BEGIN { use_ok('MySQL::Sandbox') };
 
18
#BEGIN { use_ok('MySQL::Sandbox::Scripts') };
 
19
#BEGIN { use_ok('MySQL::Sandbox::Recipes') };
7
20
 
8
21