Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 511 Bytes

README.textile

File metadata and controls

17 lines (12 loc) · 511 Bytes

Redcukes

Redcukes for integrating redmine with cucumber and we can run cucumber against the user stories stored in redmine and update execution status back to redmine

Steps:
gem install redcukes

add the following configuration in your cucumber project’s env.rb file.

require 'redcukes'
Redcukes::Redmine.configure do |config|
 config.site = redmine url
 config.user = redmine username
 config.password = redmine password
end