0.0
No commit activity in last 3 years
No release in over 3 years
enhanced speed profile formatter for rspec and cucumber
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

super_profile

enhanced speed profile formatters for rspec and cucumber

super_profile is a set of formatters for rspec and Cucumber that display the execution times of tests/features and files, sorted by runtime, regardless of sucess/failure of tests/features.

Installation

Installing super_profile is easy. Just put it in your Gemfile

gem 'super_profile'

run bundle install

If you don’t user Bundler you can install it using the gem command:

$ gem install super_profile

You can now run your features like this:

$ cucumber --format SuperProfile

and your specs like this:

$ rspec spec --format SuperProfile

If you want to use SuperProflie as your default formatter, simply put the option in your cucumber.yml file:

--format SuperProfile