Sha256: 8e6c7c114730e532b445e7f2066d6fceec494797f12a9972e4f3c2555c762cf2
Contents?: true
Size: 395 Bytes
Versions: 1
Compression:
Stored size: 395 Bytes
Contents
require 'praegustator' module Praegustator class Executor def initialize end def execute(recipes) recipes.each do |recipe| suits = Praegustator::Dsl.new.parse_file(recipe) suits.each(&:execute) end end def execute_check(query,check) suite = Praegustator::TestSuite.new(query) suite.check check suite.execute end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
praegustator-0.3.0 | lib/praegustator/executor.rb |