Sha256: 32358c7699572ca077671110b656ec8ada3516fd99f9c8e0759d68ae3d4d1e73

Contents?: true

Size: 678 Bytes

Versions: 7

Compression:

Stored size: 678 Bytes

Contents

Feature: Parsing a SymbolMatrix serialization
  In order to be able to build multidimensional hashes from 
    single line contexts, such as terminals
  As a developer
  I want to have a simple way to parse a serialization

Scenario: Quite basic structure
  Given "data:datum"
  When I parse it
  Then I should see (serialized in yaml)
  """
  data: datum
  """

Scenario: Needlessly complicated
  Given "remote.client.host:fetcher remote.client.path:/ remote.client.port:bridge.fetcher remote.server:8080"
  When I parse it
  Then I should see (serialized in yaml)
  """
  remote: 
    client:
      host: fetcher
      path: /
      port: bridge.fetcher
    server: 8080
  """

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
gamera-symbolmatrix-1.2.1 features/parse_serialization.feature
symbolmatrix-1.2.0 features/parse_serialization.feature
symbolmatrix-1.1.3 features/parse_serialization.feature
symbolmatrix-1.1.2 features/parse_serialization.feature
symbolmatrix-1.1.1 features/parse_serialization.feature
symbolmatrix-1.1.0 features/parse_serialization.feature
symbolmatrix-1.0.0 features/parse_serialization.feature