Sha256: bfd35b98f5e51f38d48391c217518b4c7df3fb8bad442ac66956a8b0805826eb
Contents?: true
Size: 417 Bytes
Versions: 34
Compression:
Stored size: 417 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 When /^I am retrieving the scoped result count$/ do @results = results.search_count end
Version data entries
34 entries across 34 versions & 11 rubygems