Skip to content

Commit 4e2b064

Browse files
committed
MAGETWO-39868: Api-functional test module "TestJoinDirectives" is not included in root .gitignore
1 parent 16ac771 commit 4e2b064

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

dev/tests/api-functional/_files/Magento/TestJoinDirectives/Api/TestRepositoryInterface.php renamed to dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/Api/TestRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright © 2015 Magento. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace Magento\TestJoinDirectives\Api;
6+
namespace Magento\TestModuleJoinDirectives\Api;
77

88
/**
99
* Interface TestRepositoryInterface

dev/tests/api-functional/_files/Magento/TestJoinDirectives/Model/TestRepository.php renamed to dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/Model/TestRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
* Copyright © 2015 Magento. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace Magento\TestJoinDirectives\Model;
6+
namespace Magento\TestModuleJoinDirectives\Model;
77

8-
use Magento\TestJoinDirectives\Api\TestRepositoryInterface;
8+
use Magento\TestModuleJoinDirectives\Api\TestRepositoryInterface;
99
use Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface;
1010

1111
/**

dev/tests/api-functional/_files/Magento/TestJoinDirectives/etc/acl.xml renamed to dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/acl.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<acl>
1010
<resources>
1111
<resource id="Magento_Backend::admin">
12-
<resource id="Magento_TestJoinDirectives::all" title="TestJoinDirectives" sortOrder="1">
13-
<resource id="Magento_TestJoinDirectives::getList" title="GetList" sortOrder="10"/>
12+
<resource id="Magento_TestModuleJoinDirectives::all" title="TestJoinDirectives" sortOrder="1">
13+
<resource id="Magento_TestModuleJoinDirectives::getList" title="GetList" sortOrder="10"/>
1414
</resource>
1515
</resource>
1616
</resources>

dev/tests/api-functional/_files/Magento/TestJoinDirectives/etc/di.xml renamed to dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/di.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
*/
77
-->
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
9-
<preference for="Magento\TestJoinDirectives\Api\TestRepositoryInterface" type="Magento\TestJoinDirectives\Model\TestRepository" />
9+
<preference for="Magento\TestModuleJoinDirectives\Api\TestRepositoryInterface" type="Magento\TestModuleJoinDirectives\Model\TestRepository" />
1010
</config>

dev/tests/api-functional/_files/Magento/TestJoinDirectives/etc/module.xml renamed to dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
*/
77
-->
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
9-
<module name="Magento_TestJoinDirectives" setup_version="1.0"/>
9+
<module name="Magento_TestModuleJoinDirectives" setup_version="1.0"/>
1010
</config>

dev/tests/api-functional/_files/Magento/TestJoinDirectives/etc/webapi.xml renamed to dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/webapi.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
99
xsi:noNamespaceSchemaLocation="../../../../../app/code/Magento/Webapi/etc/webapi.xsd">
1010

11-
<route url="/V1/TestJoinDirectives" method="GET">
12-
<service class="Magento\TestJoinDirectives\Api\TestRepositoryInterface" method="getList"/>
11+
<route url="/V1/TestModuleJoinDirectives" method="GET">
12+
<service class="Magento\TestModuleJoinDirectives\Api\TestRepositoryInterface" method="getList"/>
1313
<resources>
14-
<resource ref="Magento_TestJoinDirectives::getList" />
14+
<resource ref="Magento_TestModuleJoinDirectives::getList" />
1515
</resources>
1616
</route>
1717
</routes>

dev/tests/api-functional/testsuite/Magento/Webapi/JoinDirectivesTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ public function testGetList()
5454
$searchCriteria = $this->searchBuilder->create()->__toArray();
5555
$requestData = ['searchCriteria' => $searchCriteria];
5656

57-
$restResourcePath = '/V1/TestJoinDirectives/';
58-
$soapService = 'testJoinDirectivesTestRepositoryV1';
57+
$restResourcePath = '/V1/TestModuleJoinDirectives/';
58+
$soapService = 'testModuleJoinDirectivesTestRepositoryV1';
5959
$expectedExtensionAttributes = $this->getExpectedExtensionAttributes();
6060

6161
$serviceInfo = [

0 commit comments

Comments
 (0)