require 'spec_helper' require 'gherkin/formatter/model' require 'gherkin/formatter/argument' module Gherkin module Formatter module Model describe Tag do it "should be equal when name is equal" do tags = [Tag.new('@x', 1), Tag.new('@y', 2), Tag.new('@x', 3)] tags.to_a.uniq.length.should == 2 end end describe Step do it "should provide arguments for outline tokens" do step = Step.new([], 'Given ', "I have cukes in belly", 10, nil, nil) step.outline_args.map{|arg| [arg.offset, arg.val]}.should == [[7, ""], [25, ""]] end it "should provide no arguments when there are no outline tokens" do step = Step.new([], 'Given ', "I have 33 cukes in my belly", 10, nil, nil) step.outline_args.to_a.should == [] end end end end end