Skip to content

Commit

Permalink
add travis ci
Browse files Browse the repository at this point in the history
  • Loading branch information
alibo committed Sep 20, 2018
1 parent 9f712ce commit 807fba2
Show file tree
Hide file tree
Showing 5 changed files with 1,864 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docker-compose.testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
volumes:
- .:/app

nginx:
web:
image: 'nginx:alpine'
depends_on:
- phpfpm
Expand Down
26 changes: 26 additions & 0 deletions tests/_support/ApiTester.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
* @method void wantTo($text)
* @method void execute($callable)
* @method void expectTo($prediction)
* @method void expect($prediction)
* @method void amGoingTo($argumentation)
* @method void am($role)
* @method void lookForwardTo($achieveValue)
* @method void comment($description)
* @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
*
* @SuppressWarnings(PHPMD)
*/
class ApiTester extends \Codeception\Actor
{
use _generated\ApiTesterActions;

/**
* Define custom actions here
*/
}
Loading

0 comments on commit 807fba2

Please sign in to comment.