-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from ishanvyas22/feedback-changes
Plugin name change, minor enhancements
- Loading branch information
Showing
11 changed files
with
86 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
namespace AssetMix\Test\TestCase\View\Helper; | ||
|
||
use Cake\View\View; | ||
use Cake\TestSuite\TestCase; | ||
use AssetMix\View\Helper\AssetMixHelper; | ||
|
||
/** | ||
* AssetMix\View\Helper\AssetMixHelper Test Case | ||
*/ | ||
class AssetMixHelperTest extends TestCase | ||
{ | ||
/** | ||
* Test subject | ||
* | ||
* @var \AssetMix\View\Helper\AssetMixHelper | ||
*/ | ||
public $AssetMix; | ||
|
||
/** | ||
* setUp method | ||
* | ||
* @return void | ||
*/ | ||
public function setUp() | ||
{ | ||
$this->_compareBasePath = APP . 'tests' . DS . 'comparisons' . DS; | ||
|
||
parent::setUp(); | ||
|
||
$view = new View(); | ||
$this->AssetMix = new AssetMixHelper($view); | ||
} | ||
|
||
/** | ||
* tearDown method | ||
* | ||
* @return void | ||
*/ | ||
public function tearDown() | ||
{ | ||
unset($this->AssetMix); | ||
|
||
parent::tearDown(); | ||
} | ||
|
||
/** | ||
* Test script function returns proper tag without versioning | ||
* | ||
* @return void | ||
*/ | ||
public function testScriptTagWithoutVersion() | ||
{ | ||
$this->AssetMix->css('main'); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters