Sha256: 883112fc98eacf14d5865c20312cfe3723781d410fa4869726fa8e37c6cdbc32
Contents?: true
Size: 326 Bytes
Versions: 16
Compression:
Stored size: 326 Bytes
Contents
When /^I use the ([\w]+) scope$/ do |scope| @results = results.send(scope.to_sym) end When /^I use the ([\w]+) scope set to "([^\"]*)"$/ do |scope, value| @results = results.send(scope.to_sym, value) end When /^I use the ([\w]+) scope set to (\d+)$/ do |scope, int| @results = results.send(scope.to_sym, int.to_i) end
Version data entries
16 entries across 16 versions & 4 rubygems