Sha256: 79459ed76fa289ef6c2a30164ce163b161abf203a0c07fdaa1e5493088d06b94
Contents?: true
Size: 745 Bytes
Versions: 32
Compression:
Stored size: 745 Bytes
Contents
Feature: define diffable matcher When a matcher is defined as diffable, and the --diff flag is set, the output will include a diff of the submitted objects. Scenario: define a diffable matcher Given a file named "diffable_matcher_spec.rb" with: """ Spec::Matchers.define :be_just_like do |expected| match do |actual| actual == expected end diffable end describe "this" do it {should be_just_like("that")} end """ When I run "spec diffable_matcher_spec.rb --diff" Then the exit code should be 256 And the stdout should include "should be just like \"that\"" And the stdout should include "Diff:\n@@ -1,2 +1,2 @@\n-that\n+this"
Version data entries
32 entries across 32 versions & 11 rubygems