cucumber icon indicating copy to clipboard operation
cucumber copied to clipboard

Cucumber for Rust

Results 18 cucumber issues
Sort by recently updated
recently updated
newest added

Canary issue: Is this project dead or alive? If this issue sits here unremarked for a length of time, folks who come later can regard it as dead. If it...

It seems I have a too new cucumber or something. When I run the tests, it fails with a stack trace somewhere deep within cucumber itself. I don't know ruby...

Reading through the cucumber documentation, I glimpsed there should be a way to hook into start/end of a scenario. I didn't find a way to do that as part of...

Hello If I try to compile it with recent nightly (rustc 1.24.0-nightly (5a2465e2b 2017-12-06)) or newest stable, it fails with bunch of these messages: ``` error: code relies on type...

Before actually showing the code to anyone, it needs to be rustfmt'd. Yeah, I hate four spaces (among other things), but its gotta be done.

Just spent half an hour debugging my cuke, and the only reason i got it to work was beacuse I suddenly remember that its a thing. Not exactly user friendly.

In debugging #38, I found that there just wasn't enough diagnostic information printed.

From https://github.com/acmcarther/cucumber/blob/master/features/cuke.rs#L20: ``` rust cucumber::start( CucumberWorld::new(), &[ &project_steps::register_steps, ] ); ``` To a newcomer to rust (well, to anyone with eyeballs really), this looks obtuse for two reasons: 1. &[]...

The test suite seems to me to take too long to run. I'm unsure if its on the gherkin interpreter side or our side. This is based on my usage...