Skip to content

Commit

Permalink
tests solidity
Browse files Browse the repository at this point in the history
  • Loading branch information
blizzz committed Jun 30, 2015
1 parent 641fffc commit fe55251
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by ownCloud on 2015-06-18 14:16:40
# line below if for Apache 2.4
<ifModule mod_authz_core.c>
Require all denied
</ifModule>

# line below if for Apache 2.2
<ifModule !mod_authz_core.c>
deny from all
Satisfy All
</ifModule>

# section for Apache 2.2 and 2.4
IndexIgnore *
5 changes: 5 additions & 0 deletions tests/integration/setup-scripts/createExplicitGroups.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

if(php_sapi_name() !== 'cli') {
print('Only via CLI, please.');
exit(1);
}

include __DIR__ . '/config.php';

$cr = ldap_connect($host, $port);
Expand Down
5 changes: 5 additions & 0 deletions tests/integration/setup-scripts/createExplicitUsers.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php

if(php_sapi_name() !== 'cli') {
print('Only via CLI, please.');
exit(1);
}

include __DIR__ . '/config.php';

$cr = ldap_connect($host, $port);
Expand Down

0 comments on commit fe55251

Please sign in to comment.