Skip to content

Commit

Permalink
(GH-21) Don't declare tests until memcache check passes.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeaubert committed Aug 26, 2013
1 parent 39cacbd commit 84de187
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion t/339-retrieve_list-exclude_fields.t
Expand Up @@ -16,11 +16,13 @@ use LocalTest;
use DBIx::NinjaORM;
use Test::Exception;
use Test::FailWarnings -allow_deps => 1;
use Test::More tests => 5;
use Test::More;


LocalTest::ok_memcache();

plan( tests => 5 );

# Insert row.
my $value = 'exclude_fields_' . time();
subtest(
Expand Down
4 changes: 3 additions & 1 deletion t/440-retrieve_list-select_fields.t
Expand Up @@ -16,12 +16,14 @@ use LocalTest;
use DBIx::NinjaORM;
use Test::Exception;
use Test::FailWarnings -allow_deps => 1;
use Test::More tests => 5;
use Test::More;
use Data::Dumper;


LocalTest::ok_memcache();

plan( tests => 5 );

# Insert row.
my $value = 'select_fields_' . time();
subtest(
Expand Down

0 comments on commit 84de187

Please sign in to comment.