Sha256: c7c0606b1a9d54144d154a03edcf8634608b39dddea63ce9683ca13c3c2a6880
Contents?: true
Size: 787 Bytes
Versions: 5
Compression:
Stored size: 787 Bytes
Contents
Feature: Model output All models can be output in text form. For models that represent parts of the file structure, this text will be a path and for models that represent parts of a feature file, this text will be Gherkin (see the model output documentation for specific models for details). As such, output from a model can be used as input for the same kind of model. Scenario: Outputting a model Given the models provided by CukeModeler Then all of them can be output as text appropriate to the model type """ model = <model_class>.new model.to_s """ And the output can be used to make an equivalent model """ model = <model_class>.new <model_class>.new(model.to_s) """
Version data entries
5 entries across 5 versions & 1 rubygems