--TEST--
aggregating everything
---POST--
---GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate($obj, 'helper');
--GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_methods($obj, 'mixin');
--GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_methods_by_list($obj, 'helper', array('just_another_method'));
--GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_methods_by_regexp($obj, 'helper', '/^do/');
--GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_properties($obj, 'mixin');
--GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_properties_by_list($obj, 'helper', array('my_prop', 'our_prop'));
--GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate_properties_by_regexp($obj, 'helper', '/^my/');
--GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate($obj, 'mixin');
--GET--
--FILE--
<?php
-include "./ext/standard/tests/aggregation/aggregate.lib";
+include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate($obj, 'helper');