Cucumber::Relizy
This app will enhance your Cucumber html output with features navigation. Improve usability on browsing features for any stakeholders.
Before:
Installation
$ gem install cucumber-relizy
Usage
-
command-line
cucumber-relizy FILENAME
will createFILENAME.relizy.html
-
thor task
- add this to your Thorfile in a Rails app
class App < Thor
desc "features", "run cucumber and browse features"
def features
system "rm tmp/features.html"
system "rm tmp/features.relizy.html"
system "bundle exec cucumber --drb features/ --format=html -o tmp/features.html"
system "cucumber-relizy tmp/features.html"
system "open tmp/features.relizy.html"
end
end
- run
thor app:features
to run cucumber, and browse the features.
Similar library
- http://relishapp.com : this library is inspired by Relish feature navigation.