Skip to content

Commit 523a9ee

Browse files
authored
Merge branch 'master' into release/0.1.0
2 parents 54014a4 + 1fe6179 commit 523a9ee

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ build
33
#A library must not provide a composer.lock file
44
composer.lock
55

6-
features/demo_app/var/
6+
features/demo_app/var/

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,4 @@ cache:
3939
branches:
4040
except:
4141
- /.*\-dev$/
42+

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ else
5959
PHPCS_DISABLE_WARNING_OPTION=-n
6060
endif
6161

62-
6362
## Project build (install and configure)
6463
build: install configure
6564

@@ -93,7 +92,6 @@ behat-coverage: create-behat-coverage-directory
9392
composer required leanphp/behat-code-coverage
9493
./vendor/bin/behat ${BEHAT_COLOR_OPTION} ${BEHAT_OUTPUT_STYLE_OPTION} --no-snippets --profile coverage
9594

96-
9795
# Internal commands
9896
create-coverage-directory:
9997
mkdir -p ${COVERAGE_DIRECTORY}
@@ -104,6 +102,5 @@ create-behat-coverage-directory:
104102
create-reports-directory:
105103
mkdir -p ${REPORTS_DIRECTORY}
106104

107-
108105
.PHONY: build install configure test test-technical test-functional codestyle coverage behat-coverage create-coverage-directory create-behat-coverage-directory create-reports-directory
109106
.DEFAULT: build

features/bootstrap/FeatureContext.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
namespace Tests\Functional\BehatContext;
3+
4+
use Behat\Behat\Context\Context;
5+
6+
/**
7+
* Defines application features from the specific context.
8+
*/
9+
class FeatureContext implements Context
10+
{
11+
/**
12+
* Initializes context.
13+
*
14+
* Every scenario gets its own context instance.
15+
* You can also pass arbitrary arguments to the
16+
* context constructor through behat.yml.
17+
*/
18+
public function __construct()
19+
{
20+
}
21+
}

0 commit comments

Comments
 (0)