Your IP : 216.73.216.79


Current Path : /var/www/html/hr/vendor/codeception/base/tests/cli/
Upload File :
Current File : /var/www/html/hr/vendor/codeception/base/tests/cli/GenerateFeatureCept.php

<?php
$I = new CliGuy($scenario);
$I->wantTo('generate gherkin steps');
$I->amInPath('tests/data/sandbox');
$I->executeCommand('generate:feature scenario Login');
$I->seeInShellOutput('Feature was created');
$I->seeFileFound('Login.feature', 'tests/scenario');
$I->seeInThisFile('Feature: Login');
$I->deleteThisFile();

$I->executeCommand('generate:feature scenario dummy/Login');
$I->seeFileFound('Login.feature', 'tests/scenario/dummy');
$I->seeInThisFile('Feature: Login');