Skip to content

Commit ab98291

Browse files
committed
addressing issue #47, first iteration
1 parent 770d472 commit ab98291

File tree

8 files changed

+232
-207
lines changed

8 files changed

+232
-207
lines changed

.idea/php-docker-settings.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 201 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

workshop/08_Testing/01_Behat_Testing/01_Initializing_Behat.php

Lines changed: 0 additions & 27 deletions
This file was deleted.

workshop/08_Testing/01_Behat_Testing/02_Writing_Behat_Tests.php

Lines changed: 0 additions & 146 deletions
This file was deleted.

workshop/08_Testing/01_Behat_Testing/03_Running_Behat_Tests.php

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
class FeatureContext implements \Behat\Behat\Context\Context
4+
{
5+
/**
6+
* @Given some circumstances
7+
*/
8+
public function passes()
9+
{
10+
return true;
11+
}
12+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Feature: My feature
2+
3+
Scenario: First scenario
4+
Given some circumstances
2.18 MB
Binary file not shown.

0 commit comments

Comments
 (0)