Skip to content

Commit

Permalink
Add feature describing expected serialization of docstrings
Browse files Browse the repository at this point in the history
This is intended to help reproduce and diagnose
cucumber/cucumber-ruby#1183.
  • Loading branch information
GielVanSchijndel-TomTom authored and brasmusson committed Jul 23, 2018
1 parent 018804f commit 138c5fe
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions features/docstring.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
Feature: Wire protocol docstrings

In order to use docstrings as arguments to step definitions, we send them as
an additional argument after the arguments extracted by the wire server.

Background:
Given a file named "features/step_definitions/some_remote_place.wire" with:
"""
host: localhost
port: 54321
"""

Scenario: Run a scenario
Given a file named "features/wired.feature" with:
"""
Feature: High strung
Scenario: Wired
Given we're all wired
\"\"\"
to want more
\"\"\"
"""
And there is a wire server running on port 54321 which understands the following protocol:
| request | response |
| ["step_matches",{"name_to_match":"we're all wired"}] | ["success",[{"id":"1", "args":[]}]] |
| ["begin_scenario"] | ["success"] |
| ["invoke",{"id":"1","args":["to want more"]}] | ["success"] |
| ["end_scenario"] | ["success"] |
When I run `cucumber -f progress`
Then the stderr should not contain anything
And it should pass with:
"""
.
1 scenario (1 passed)
1 step (1 passed)
"""

0 comments on commit 138c5fe

Please sign in to comment.