Sha256: b3e40ba3f867706d7be446861ea7ad50a8f3656ab228d8bb6fe07040165dcf84
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
require 'cucumber/ast/names' module Cucumber module Ast class Examples #:nodoc: include Names attr_writer :outline_table def initialize(comment, line, keyword, title, description, outline_table) @comment, @keyword, @title, @description, @outline_table = comment, keyword, title, description, outline_table end attr_reader :gherkin_statement def gherkin_statement(statement=nil) @gherkin_statement ||= statement end def accept(visitor) return if Cucumber.wants_to_quit visitor.visit_comment(@comment) unless @comment.empty? visitor.visit_examples_name(@keyword, name) visitor.visit_outline_table(@outline_table) end def skip_invoke! @outline_table.skip_invoke! end def each_example_row(&proc) @outline_table.cells_rows[1..-1].each(&proc) end def failed? @outline_table.cells_rows[1..-1].select{|row| row.failed?}.any? end def to_sexp sexp = [:examples, @keyword, name] comment = @comment.to_sexp sexp += [comment] if comment sexp += [@outline_table.to_sexp] sexp end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cucumber-1.2.5 | lib/cucumber/ast/examples.rb |
cucumber-1.2.3 | lib/cucumber/ast/examples.rb |
cucumber-1.2.2 | lib/cucumber/ast/examples.rb |