Skip to content

Commit

Permalink
tests: fix module config
Browse files Browse the repository at this point in the history
  • Loading branch information
TonisOrmisson committed Jul 23, 2018
1 parent 69e30d0 commit 61c8d3c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
9 changes: 4 additions & 5 deletions tests/_config/test.php
Expand Up @@ -4,12 +4,11 @@
$config = [
'id' => 'test-app',
'basePath' => dirname(__DIR__). "/../src/",
'aliases' =>[
'@vendor' => '@app/../vendor',
'@bower' => '@vendor/bower-asset',
'@npm' => '@vendor/npm-asset',
'modules' => [
'emailsvalidator' => [
'class' => 'andmemasin\emailsvalidator\Module',
],
],

];


Expand Down
7 changes: 3 additions & 4 deletions tests/unit/EmailsValidationFormTest.php
Expand Up @@ -2,9 +2,12 @@
namespace andmemasin\emailsvalidator;

use andmemasin\emailsvalidator\models\EmailsValidationForm;
use andmemasin\myabstract\test\ModelTestTrait;

class EmailsValidationFormTest extends \Codeception\Test\Unit
{
use ModelTestTrait;

/**
* @var \andmemasin\emailsvalidator\UnitTester
*/
Expand All @@ -23,11 +26,7 @@ protected function _after()
{
}

// tests
public function testSomeFeature()
{

}

/**
* Returns a good working LimeSurvey collector
Expand Down

0 comments on commit 61c8d3c

Please sign in to comment.