Sha256: c58147379df6431380b67e0d9f693fd7196d7d7f5e769f306f6544fab07031a5
Contents?: true
Size: 963 Bytes
Versions: 5
Compression:
Stored size: 963 Bytes
Contents
Feature: Feature file output A feature file model's string output is simply the file path of the feature file that it models and its most relevant attribute for inspection is the path of the feature file that it models. Background: Given a feature file model based on "some_feature_file.feature" Scenario: Stringify a feature file model When the model is output as a string """ @model.to_s """ Then the following text is provided: """ <path_to>/some_feature_file.feature """ And the output can be used to make an equivalent model """ CukeModeler::FeatureFile.new(@model.to_s) """ Scenario: Inspect a feature file model When the model is inspected """ @model.inspect """ Then the following text is provided: """ #<CukeModeler::FeatureFile:<object_id> @path: "<path_to>/some_feature_file.feature"> """
Version data entries
5 entries across 5 versions & 1 rubygems