Sha256: 9d921dbdf5302fed70e18d000dc43730967ec0602ae6ea45465a33672f640252
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
Feature: Flatten the HashModel In order to customize looping over the HashModel records As a programmer I want to be able to flatten the HashModel to one field Or flatten all fields Background: Given we have a test table | switch | description | | :switch=>["-x","--xtended"] | :description=>"This is a description" | | :switch=>"-y" | :description=>"Why not?" | | :switch=>["-z","--zee"] | :description=>"head for zee hills" | Scenario: Create a HashModel Given we have a HashModel instance When the HashModel is populated with the test table Then the flatten index should be :switch Scenario: Change the flatten index Given we have a HashModel instance When the HashModel is populated with the test table And the flatten index is set to :description Then the flatten index should be :description Scenario: Flatten input hashes to the default flatten index Given we have a HashModel instance When the HashModel is populated with the test table Then the HashModel recordset should look like | id | group_id | switch | description | | :hm_id=>0 | :hm_group_id=> 0 | :switch=>"-x" | :description=>"This is a description" | | :hm_id=>1 | :hm_group_id=> 0 | :switch=>"--xtended" | :description=>"This is a description" | | :hm_id=>2 | :hm_group_id=> 1 | :switch=>"-y" | :description=>"Why not?" | | :hm_id=>3 | :hm_group_id=> 2 | :switch=>"-z" | :description=>"head for zee hills" | | :hm_id=>4 | :hm_group_id=> 2 | :switch=>"--zee" | :description=>"head for zee hills" |
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hashmodel-0.1.1 | features/hash_model_flatten.feature |