]> granicus.if.org Git - php/commitdiff
- Renamed aggregate.lib.php -> aggregate.lib (.php files are always deleted bycvsclean)
authorfoobar <sniper@php.net>
Sun, 10 Mar 2002 02:38:06 +0000 (02:38 +0000)
committerfoobar <sniper@php.net>
Sun, 10 Mar 2002 02:38:06 +0000 (02:38 +0000)
ext/standard/tests/aggregation/aggregate.lib [moved from ext/standard/tests/aggregation/aggregate.lib.php with 100% similarity]
ext/standard/tests/aggregation/aggregate.phpt
ext/standard/tests/aggregation/aggregate_methods.phpt
ext/standard/tests/aggregation/aggregate_methods_by_list.phpt
ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt
ext/standard/tests/aggregation/aggregate_properties.phpt
ext/standard/tests/aggregation/aggregate_properties_by_list.phpt
ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt
ext/standard/tests/aggregation/aggregation_info.phpt
ext/standard/tests/aggregation/deaggregate.phpt

index 82afb16f7090ee2379fc2d61b42f31b479d13239..161afcda68c70248718c2d78960775338adadacf 100644 (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');
index 6567db0069c153cf1d74e4d27dc0f62e6d7770a2..523d5c72ee96e4a68d412dee705c679d6287a24f 100644 (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');
index fabea1e17f5429fb2df09072605afe98df40567e..192c43856534c7438832e02cf74ea7c8db91e8a0 100644 (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'));
index 1074e02afb9e65efd136b0af1acef4c3fdaca020..a9fbe6a4acab31e1d3febf508c99bd816f869fec 100644 (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/');
index c035823799ff2a47c1b60f7d8475fb41ba133da6..cb7562bb6f2d56db94a7ca1234d846b9b71934ac 100644 (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');
index 187588b29ed70669a53d45bdbb8210affbb8c3b7..ae1def93492fea2d12bd3ea79b5301b8cca74093 100644 (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'));
index d63f9002026111015f4265925abfc82943e67a60..0f4d52f645d93c1287997cb4c66d054018a60526 100644 (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/');
index f39b7aa373f3c1e24f9478c4429da93f39679d14..cb2d9b8bb7278dacb3265f4c47c008a6c48aa089 100644 (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');
index 8e1f71eb22ca2023f0ac609c9615ef772da3db9d..f7fc2ad67dbb97800c2b0b83a5f040cdcce532cb 100644 (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');