In your rust project:
- Add the cucumber-rs dependency to your Cargo.toml
- Add a gemfile containing gem 'cucumber'
, preferably with the same ruby version as the example
- Add a feature directory, containing the following basic files
- features/cuke.rs (based off the example)
- features/stepdefinitions/cucumberrust.wire (based off the example)
- Add a cargo test entry to your Cargo.toml to hook cucumber tests into cargo test
(based off example)
- Run cargo test, and verify that cucumber executes with no steps
- Add your *.feature
files and step defintions as normal
cargo test
Inside examples/calculator
cargo test