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-4.5.1 features/auto_layout.feature
middleman-core-4.5.0 features/auto_layout.feature
middleman-core-4.4.3 features/auto_layout.feature
middleman-core-4.4.2 features/auto_layout.feature
middleman-core-4.4.0 features/auto_layout.feature
middleman-core-4.3.11 features/auto_layout.feature
middleman-core-4.3.10 features/auto_layout.feature
middleman-core-4.3.8 features/auto_layout.feature
middleman-core-4.3.7 features/auto_layout.feature
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/middleman-core-4.3.3/features/auto_layout.feature
middleman-core-4.3.6 features/auto_layout.feature
middleman-core-4.3.5 features/auto_layout.feature
middleman-core-4.3.4 features/auto_layout.feature
middleman-core-4.3.3 features/auto_layout.feature
middleman-core-4.3.2 features/auto_layout.feature
middleman-core-4.3.1 features/auto_layout.feature
middleman-core-4.3.0 features/auto_layout.feature
middleman-core-4.3.0.rc.4 features/auto_layout.feature
middleman-core-4.3.0.rc.3 features/auto_layout.feature
middleman-core-4.3.0.rc.2 features/auto_layout.feature