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_profileYou can now run your features like this:
$ cucumber --format SuperProfileand your specs like this:
$ rspec spec --format SuperProfileIf you want to use SuperProflie as your default formatter, simply put the option in your cucumber.yml file:
--format SuperProfile