Alex McArther
Alex McArther
Yeeeeeeeah!
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...
We used to have caching for this purpose, but found out that it was causing beta and nightly to fail to build. It was removed in https://github.com/acmcarther/cucumber/pull/24 but should be...
So the current implementation was essentially a spike so that I could use Cucumber with Rust. Honeymoon is over, and in my last PR where I added panic catching behavior,...
The internal tests for cucumber are pretty complicated by virtue of the file operations, and the meta-scenario execution. Another large example may elucidate
Its pretty clunky to work with tables, especially compared to the nice coercion other types have. it would be nice if we could hide some of the cruft behind a...