erikedin / Behavior.jl

Tool for Behavior Driven Development in Julia
Other
25 stars 3 forks source link

Data tables have extra empty line when followed by another step #74

Closed erikedin closed 3 years ago

erikedin commented 3 years ago
Scenario: Tables
    Given some table
       | hello |
       | world |
     And some other step

The given step above will have three table rows

[
 ["hello"],
 ["world"],
 []
]

The last row which is empty should not be there.