romikoops/howitzer

View on GitHub
generators/cucumber/templates/common_steps.rb

Summary

Maintainability
A
0 mins
Test Coverage
#############################################################
#                      PREREQUISITES                        #
#############################################################

Given /^I have entered (.*) into the calculator$/ do |input_|
  pending
end

####################################
#              ACTIONS             #
####################################

When /^I press (.*)$/ do |button|
  pending
end

####################################
#              CHECKS              #
####################################

Then /^the result should be (.*) on the screen$/ do |output|
  pending
end