Sha256: 5a4c6eee7b2b501a66d6d3d5b8e37846699f46dcef0d4096abf06ef2fb76cdb6
Contents?: true
Size: 730 Bytes
Versions: 26
Compression:
Stored size: 730 Bytes
Contents
Feature: Comment output A comment model's string output is a Gherkin representation of itself. As such, output from a comment model can be used as input for the same kind of model. Scenario: Outputting a comment model Given the following gherkin: """ # a comment """ And a comment model based on that gherkin """ @model = CukeModeler::Comment.new(<source_text>) """ When the model is output as a string """ @model.to_s """ Then the following text is provided: """ # a comment """ And the output can be used to make an equivalent model """ CukeModeler::Comment.new(@model.to_s) """
Version data entries
26 entries across 26 versions & 1 rubygems