Sha256: cabc775f99543667c47bbe32e43cecb18c8e19791cd6b85bfbea74510085bdbc
Contents?: true
Size: 614 Bytes
Versions: 2
Compression:
Stored size: 614 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe Remarkable::Macros do subject { [1, 2, 3] } should_contain(1) should_contain(1, 2) should_contain(1, 2, 3) should_not_contain(4) should_not_contain(1, 4) describe "with disabled examples" do # Example disabled without parameters to ensure rescue works properly xshould_not_single_contain xshould_contain(5) xshould_not_contain(1) end describe "with blocks" do subject { [1, 2, 3] } should_not_single_contain(4) should_single_contain(4){ |array| array << 4 } end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
remarkable-3.0.0 | spec/macros_spec.rb |
remarkable-3.0.1 | spec/macros_spec.rb |