summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/HasParentTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/Query/HasParentTest.php')
-rw-r--r--vendor/ruflin/elastica/test/lib/Elastica/Test/Query/HasParentTest.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/HasParentTest.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/HasParentTest.php
deleted file mode 100644
index d417c887..00000000
--- a/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/HasParentTest.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-
-namespace Elastica\Test\Query;
-
-use Elastica\Query\HasParent;
-use Elastica\Query\MatchAll;
-use Elastica\Test\Base as BaseTest;
-
-class HasParentTest extends BaseTest
-{
- public function testToArray()
- {
- $q = new MatchAll();
-
- $type = 'test';
-
- $query = new HasParent($q, $type);
-
- $expectedArray = array(
- 'has_parent' => array(
- 'query' => $q->toArray(),
- 'type' => $type
- )
- );
-
- $this->assertEquals($expectedArray, $query->toArray());
- }
-
- public function testSetScope()
- {
- $q = new MatchAll();
-
- $type = 'test';
-
- $scope = 'foo';
-
- $query = new HasParent($q, $type);
- $query->setScope($scope);
-
- $expectedArray = array(
- 'has_parent' => array(
- 'query' => $q->toArray(),
- 'type' => $type,
- '_scope' => $scope
- )
- );
-
- $this->assertEquals($expectedArray, $query->toArray());
- }
-}