forcelly prepend at the top of the after:each
It suits for example:
- take screen shot of selenium test BEFORE the teardown of after hooks
Installation
Add this line to your application's Gemfile:
gem 'rspec-absolutely_prepended_after_each'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rspec-absolutely_prepended_after_each
Usage
require "rspec/absolutely_prepended_after_each"
RSpec.configure do |config|
config.prepend_absolutely_after_each do
# codes you'd like to execute before every after(:each) blocks
end
end
require "rspec/absolutely_prepended_after_each"
describe "some description" do
prepend_absoutely_after_each do
# codes you'd like to execute before every after(:each) blocks below
end
context "some context" do
after(:each) { "some teardown" }
end
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request