Sha256: 52d14808a543a8f94ccf004e0ef6160a0f534b0050146bab0896211766e1467f

Contents?: true

Size: 1.3 KB

Versions: 133

Compression:

Stored size: 1.3 KB

Contents

Feature: Provide Sane Defaults for Layout Behavior

  Scenario: Template and Layout of same engine exist
    Given the Server is running at "engine-matching-layout"
    When I go to "/index.html"
    Then I should see "Comment in layout"
  
  Scenario: Template and Layout of different engine
    Given the Server is running at "different-engine-layout"
    When I go to "/index.html"
    Then I should see "Comment in layout"
  
  Scenario: Multiple layouts exist, prefer same engine
    Given the Server is running at "multiple-layouts"
    When I go to "/index.html"
    Then I should see "ERb Comment in layout"
  
  Scenario: No layout exists
    Given the Server is running at "no-layout"
    When I go to "/index.html"
    Then I should not see "Comment in layout"
  
  Scenario: Manually set default layout in config (exists)
    Given the Server is running at "manual-layout"
    When I go to "/index.html"
    Then I should see "Custom Comment in layout"
    
  Scenario: Manually set default layout in config (does not exist)
    Given the Server is running at "manual-layout-missing"
    When I go to "/index.html"
    Then I should see "Error"
  
  Scenario: Overwrite manual layout
    Given the Server is running at "manual-layout-override"
    When I go to "/index.html"
    Then I should see "Another Comment in layout"

Version data entries

133 entries across 133 versions & 5 rubygems

Version Path
middleman-core-x86-mingw32-3.0.1.pre features/auto_layout.feature
middleman-core-3.0.1.pre features/auto_layout.feature
middleman-core-3.0.0 features/auto_layout.feature
middleman-core-3.0.0.rc.4 features/auto_layout.feature
middleman-core-3.0.0.rc.3 features/auto_layout.feature
middleman-core-3.0.0.rc.2 features/auto_layout.feature
middleman-core-3.0.0.rc.1 features/auto_layout.feature
middleman-core-3.0.0.beta.3 features/auto_layout.feature
middleman-core-3.0.0.beta.2 features/auto_layout.feature
middleman-core-3.0.0.beta.1 features/auto_layout.feature
middleman-core-3.0.0.alpha.9 features/auto_layout.feature
middleman-core-3.0.0.alpha.8 features/auto_layout.feature
middleman-core-3.0.0.alpha.7 features/auto_layout.feature