Skip to content

Commit

Permalink
Moved the aggregate tests for users into a separate subdir.
Browse files Browse the repository at this point in the history
So that the author tests can go into another subdir.
  • Loading branch information
mendel committed Nov 5, 2010
1 parent 962178f commit e7bce08
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion agg-t/01-warnings.t → agg-t/user/01-warnings.t
Expand Up @@ -7,7 +7,7 @@ use Test::Most;

use FindBin;
use Path::Class;
use lib dir($FindBin::Bin)->parent->subdir('t', 'lib')->stringify;
use lib dir($FindBin::Bin)->parent->parent->subdir('t', 'lib')->stringify;

use Test::DBIx::Class;

Expand Down
2 changes: 1 addition & 1 deletion agg-t/10-add_column.t → agg-t/user/10-add_column.t
Expand Up @@ -7,7 +7,7 @@ use Test::Most;

use FindBin;
use Path::Class;
use lib dir($FindBin::Bin)->parent->subdir('t', 'lib')->stringify;
use lib dir($FindBin::Bin)->parent->parent->subdir('t', 'lib')->stringify;

use Test::DBIx::Class;

Expand Down
Expand Up @@ -7,7 +7,7 @@ use Test::Most;

use FindBin;
use Path::Class;
use lib dir($FindBin::Bin)->parent->subdir('t', 'lib')->stringify;
use lib dir($FindBin::Bin)->parent->parent->subdir('t', 'lib')->stringify;

use Test::DBIx::Class;

Expand Down
2 changes: 1 addition & 1 deletion t/10-mutable.t
Expand Up @@ -9,4 +9,4 @@ use FindBin;
use Path::Class;
use lib dir($FindBin::Bin)->subdir('lib')->stringify;

include_tests { test_args => [ 'mutable' ] }, 'agg-t/*.t';
include_tests { test_args => [ 'mutable' ] }, 'agg-t/user/*.t';
2 changes: 1 addition & 1 deletion t/11-immutable.t
Expand Up @@ -9,4 +9,4 @@ use FindBin;
use Path::Class;
use lib dir($FindBin::Bin)->subdir('lib')->stringify;

include_tests { test_args => [ 'immutable' ] }, 'agg-t/*.t';
include_tests { test_args => [ 'immutable' ] }, 'agg-t/user/*.t';
2 changes: 1 addition & 1 deletion t/20-mutable_subclass.t
Expand Up @@ -9,4 +9,4 @@ use FindBin;
use Path::Class;
use lib dir($FindBin::Bin)->subdir('lib')->stringify;

include_tests { test_args => [ 'mutable', 'subclass' ] }, 'agg-t/*.t';
include_tests { test_args => [ 'mutable', 'subclass' ] }, 'agg-t/user/*.t';
2 changes: 1 addition & 1 deletion t/21-immutable_subclass.t
Expand Up @@ -9,4 +9,4 @@ use FindBin;
use Path::Class;
use lib dir($FindBin::Bin)->subdir('lib')->stringify;

include_tests { test_args => [ 'immutable', 'subclass' ] }, 'agg-t/*.t';
include_tests { test_args => [ 'immutable', 'subclass' ] }, 'agg-t/user/*.t';

0 comments on commit e7bce08

Please sign in to comment.