Sha256: cd901551d4c939b46cb7ddbe7028710ad5ebafeebb07ab39d483dbef06702e14

Contents?: true

Size: 526 Bytes

Versions: 2

Compression:

Stored size: 526 Bytes

Contents

Feature: Paths
  Background:
    Given I create the following ProtoBuf of type "Sample":
    """
    {
      "string_field": "foo",
      "int_field": 5    
    }
    """

    Scenario: Base paths
    When I get the ProtoBuf
    Then the ProtoBuf should have "string_field"
    Then the ProtoBuf should have "int_field"
    Then the ProtoBuf should not have "double_field"

    Scenario: Table format
    When I get the ProtoBuf
    Then the ProtoBuf should have the following:
      | string_field  |
      | int_field     |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
protobuf_spec-0.3.2 features/paths.feature
protobuf_spec-0.3.1 features/paths.feature