Skip to content

Commit

Permalink
Merge pull request #293 from mgcam/extend_fixtures
Browse files Browse the repository at this point in the history
Added to fixtures an extra study-specific iRODS group
  • Loading branch information
kjsanger authored Dec 5, 2023
2 parents 193e034 + cd95d4f commit 9946efa
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ my $build = WTSI::DNAP::Utilities::Build->new
},
recommends => {
'Net::LDAP' => '0',
'WTSI::DNAP::Warehouse::Schema' => '0',
});

$build->create_build_script;
3 changes: 2 additions & 1 deletion t/lib/WTSI/NPG/DriRODSTest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ my $have_admin_rights =
# Prefix for test iRODS data access groups
my $group_prefix = 'ss_';
# Groups to be added to the test iRODS
my @irods_groups = map { $group_prefix . $_ } (0);
my @irods_groups = map { $group_prefix . $_, $group_prefix . $_ . '_human' }
(0);
# Groups added to the test iRODS in fixture setup
my @groups_added;
# Enable group tests
Expand Down
3 changes: 2 additions & 1 deletion t/lib/WTSI/NPG/iRODS/CollectionTest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ my $have_admin_rights =
# Prefix for test iRODS data access groups
my $group_prefix = 'ss_';
# Groups to be added to the test iRODS
my @irods_groups = map { $group_prefix . $_ } (10, 100);
my @irods_groups = map { $group_prefix . $_, $group_prefix . $_ . '_human' }
(10, 100);
# Groups added to the test iRODS in fixture setup
my @groups_added;

Expand Down
3 changes: 2 additions & 1 deletion t/lib/WTSI/NPG/iRODS/DataObjectTest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ my $have_admin_rights =
# Prefix for test iRODS data access groups
my $group_prefix = 'ss_';
# Groups to be added to the test iRODS
my @irods_groups = map { $group_prefix . $_ } (10, 100);
my @irods_groups = map { $group_prefix . $_, $group_prefix . $_ . '_human' }
(10, 100);
# Groups added to the test iRODS in fixture setup
my @groups_added;

Expand Down
3 changes: 2 additions & 1 deletion t/lib/WTSI/NPG/iRODSTest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ my $irods_tmp_coll;
# Prefix for test iRODS data access groups
my $group_prefix = 'ss_';
# Groups to be added to the test iRODS
my @irods_groups = map { $group_prefix . $_ } (0, 10, 100);
my @irods_groups = map { $group_prefix . $_, $group_prefix . $_ . '_human' }
(0, 10, 100);
# Groups added to the test iRODS in fixture setup
my @groups_added;
# Enable group tests
Expand Down

0 comments on commit 9946efa

Please sign in to comment.