Completed
Pull Request — master (#6)
by AJ
12:51
created

InstallControllerTest::testValidate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 8
rs 9.4285
c 1
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * CakePHPify : CakePHP Plugin for Shopify API Authentication
4
 * Copyright (c) Multidimension.al (http://multidimension.al)
5
 * Github : https://github.com/multidimension-al/cakephpify
6
 *
7
 * Licensed under The MIT License
8
 * For full copyright and license information, please see the LICENSE file
9
 * Redistributions of files must retain the above copyright notice.
10
 *
11
 * @copyright     (c) Multidimension.al (http://multidimension.al)
12
 * @link          https://github.com/multidimension-al/cakephpify CakePHPify Github
13
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
14
 */
15
16
namespace Multidimensional\Shopify\Tests\Controller;
17
18
use Multidimensional\Shopify\Controller\InstallController;
19
20
use Cake\TestSuite\IntegrationTestCase;
21
22
class InstallControllerTest extends IntegrationTestCase
23
{
24
25
    public $fixtures = ['plugin.Multidimensional/Shopify.Shops',
26
                        'plugin.Multidimensional/Shopify.AccessTokens'];
27
28
    public function setUp()
29
    {
30
        parent::setUp();
31
    }
32
33
    public function testValidate()
34
    {
35
        $this->markTestIncomplete('Not implemented yet.');
36
        /*$this->get('/shopify/install/');
37
        $this->assertResponseOk();
38
        $this->get('/shopify/' . md5(rand(1, 10)) . '/install/');
39
        $this->assertResponseError();*/
40
    }
41
42
    public function testIndex()
43
    {
44
        $this->markTestIncomplete('Not implemented yet.');
45
        /*$this->get('/shopify/install/');
46
        $this->assertResponseOk();*/
47
    }
48
49
    public function testRedirect()
50
    {
51
        $this->markTestIncomplete('Not implemented yet.');
52
    }
53
}
54