Sha256: 3c9e581130cd161b1a4f4398d718e4a1d1ca7152ae04e2c7d1a8327fe17a4668

Contents?: true

Size: 756 Bytes

Versions: 5

Compression:

Stored size: 756 Bytes

Contents

Feature: Amee can be configured

  As a ruby developer
  I want to set an Amee config 
  So that so Amee can run under a certain configurations
  
  Scenario: defaults should be available if no config has been set
    When I do not create a config
    
    Then the amee config: "server" should be: "stage.amee.com"
    And the amee config: "cache_store" should be: "Moneta::Memory"
    And the amee config: "cache" should be: "true"
    
  Scenario: server should be changed if I set a config with new server
    When I set the: "logging" on the amee config with: "false"

    Then the amee config: "logging" should be: "false"
    And the amee config: "cache_store" should be: "Moneta::Memory"
    And the amee config: "cache" should be: "true"
  
  
  

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hookercookerman-amee-0.1.8 features/config.feature
hookercookerman-amee-0.1.9 features/config.feature
hookercookerman-amee-0.2.0 features/config.feature
hookercookerman-amee-0.2.1 features/config.feature
hookercookerman-amee-0.6.0 features/config.feature