Sha256: 6d0cba5295907d3d59ffae27e3fbee283080c5bc1743e9788536a53905cb3226

Contents?: true

Size: 892 Bytes

Versions: 9

Compression:

Stored size: 892 Bytes

Contents

Feature: Residence Committee Calculations
  The residence model should generate correct committee calculations

  Scenario Outline: Bathrooms committee
    Given a residence has "full_bathrooms" of "<full_baths>"
    And it has "half_bathrooms" of "<half_baths>"
    When emissions are calculated
    Then the bathrooms committee should be exactly <bathrooms>
    Examples:
      | full_baths | half_baths | bathrooms |
      |          2 |        0.5 |       2.5 |

  Scenario Outline: Predicted annual electricity use committee
    Given a residence has "lighting_efficiency" of "<lighting_efficiency>"
    When emissions are calculated
    Then the predicted_annual_electricity_use committee should be exactly <predicted_annual_electricity_use>
    Examples:
      | lighting_efficiency | predicted_annual_electricity_use |
      | 0.5                 |                 14409.3456880943 |

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
residence-0.0.14 features/residence_committees.feature
residence-0.0.13 features/residence_committees.feature
residence-0.0.12 features/residence_committees.feature
residence-0.0.11 features/residence_committees.feature
residence-0.0.10 features/residence_committees.feature
residence-0.0.9 features/residence_committees.feature
residence-0.0.8 features/residence_committees.feature
residence-0.0.7 features/residence_committees.feature
residence-0.0.6 features/residence_committees.feature