0.0
No commit activity in last 3 years
No release in over 3 years
Patch your cucumber html output with features navigation
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

Cucumber::Relizy

This app will enhance your Cucumber html output with features navigation. Improve usability on browsing features for any stakeholders.

Before:

cucumber

After: cucumber-html

Installation

$ gem install cucumber-relizy

Usage

  1. command-line
    cucumber-relizy FILENAME
    will create FILENAME.relizy.html

  2. 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