Sha256: 089ba46be82fb6850d9375dd9be16bdce02f1ab763b6238e8ef1b55d24e87131
Contents?: true
Size: 411 Bytes
Versions: 27
Compression:
Stored size: 411 Bytes
Contents
require File.dirname(__FILE__) + '/../../spec_helper' module Cucumber module Ast describe Tags do before do @tags = Tags.new(-1, %w{one two three}) end it "should be among other tags" do @tags.should have_tags(%w{one}) end it "should not be among other tags with irrelevent tag" do @tags.should_not have_tags(%w{bacon}) end end end end
Version data entries
27 entries across 27 versions & 4 rubygems