module QueryMatchers
Constants
- VERSION
Public Instance Methods
execute_no_queries()
click to toggle source
# File lib/query_matchers.rb, line 13 def execute_no_queries QueryExecutionMatcher.new(0) end
execute_one_query()
click to toggle source
# File lib/query_matchers.rb, line 9 def execute_one_query QueryExecutionMatcher.new(1) end
execute_queries(n)
click to toggle source
# File lib/query_matchers.rb, line 5 def execute_queries(n) QueryExecutionMatcher.new(n) end