Sha256: 3ffcab6b2d1d941054b449cbabdcddf22be34a1ce78a02d6c91aad38be4da90d
Contents?: true
Size: 473 Bytes
Versions: 59
Compression:
Stored size: 473 Bytes
Contents
require "acceptance/support/output" # This creates a matcher that is used to match against certain # Vagrant output. Vagrant output is not what is being tested, # so all that state is hidden away in Acceptance::Output. RSpec::Matchers.define :match_output do |expected, *args| match do |actual| Acceptance::Output.new(actual).send(expected, *args) end failure_message_for_should do |actual| "expected output to match: #{expected} #{args.inspect}" end end
Version data entries
59 entries across 59 versions & 11 rubygems