Sha256: 9cbc00d69835e9ce74c3f91766801a7b27d39557e387a61a1ac5b43ddca5ab2b
Contents?: true
Size: 733 Bytes
Versions: 2
Compression:
Stored size: 733 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cuke_modeler-1.2.1 | testing/cucumber/features/modeling/comment_output.feature |
cuke_modeler-1.2.0 | testing/cucumber/features/modeling/comment_output.feature |