- Renamed aggregate.lib.php -> aggregate.lib (.php files are always deleted bycvsclean)

This commit is contained in:
foobar 2002-03-10 02:38:06 +00:00
parent 61eb6fb4b6
commit fe7a2440ca
10 changed files with 9 additions and 9 deletions

View File

@ -4,7 +4,7 @@ aggregating everything
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate($obj, 'helper');

View File

@ -4,7 +4,7 @@ aggregating all methods
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_methods($obj, 'mixin');

View File

@ -4,7 +4,7 @@ aggregating methods specified in the list
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_methods_by_list($obj, 'helper', array('just_another_method'));

View File

@ -4,7 +4,7 @@ aggregating methods matching regular expression
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_methods_by_regexp($obj, 'helper', '/^do/');

View File

@ -4,7 +4,7 @@ aggregating all default properties
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_properties($obj, 'mixin');

View File

@ -4,7 +4,7 @@ aggregating default properties specified in the list
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_properties_by_list($obj, 'helper', array('my_prop', 'our_prop'));

View File

@ -4,7 +4,7 @@ aggregating default properties matching regular expression
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_properties_by_regexp($obj, 'helper', '/^my/');

View File

@ -4,7 +4,7 @@ retrieving aggregation info
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate($obj, 'mixin');

View File

@ -4,7 +4,7 @@ deaggreating
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
include "./ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate($obj, 'helper');