Sha256: 1e27fbdc5bc774442671c2cafc573a7c67832ebdd6f7e200548b7a498262c608

Contents?: true

Size: 988 Bytes

Versions: 20

Compression:

Stored size: 988 Bytes

Contents

Feature: Builder
  In order to output static html and css for delivery

  Scenario: Checking built folder for content
    Given a built test app
    Then "index.html" should exist and include "Comment in layout"
    Then "javascripts/coffee_test.js" should exist and include "Array.prototype.slice"
    Then "index.html" should exist and include "<h1>Welcome</h1>"
    Then "static.html" should exist and include "Static, no code!"
    Then "services/index.html" should exist and include "Services"
    Then "stylesheets/site.css" should exist and include "html, body, div, span"
    Then "stylesheets/site_scss.css" should exist and include "html, body, div, span"
    Then "stylesheets/static.css" should exist and include "body"
    Then "_partial.html" should not exist
    And cleanup built test app
    
  Scenario: Force relative assets
    Given a built test app with flags "--relative"
    Then "stylesheets/site.css" should exist and include "../"
    And cleanup built test app

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
middleman-2.0.0.rc8 features/builder.feature
middleman-2.0.0.rc7 features/builder.feature
middleman-2.0.0.rc6 features/builder.feature
middleman-2.0.0.rc5 features/builder.feature
middleman-2.0.0.rc4 features/builder.feature
middleman-2.0.0.rc3 features/builder.feature
middleman-2.0.0.rc2 features/builder.feature
middleman-2.0.0.rc1 features/builder.feature
middleman-2.0.0.beta6 features/builder.feature
middleman-2.0.0.beta5 features/builder.feature
middleman-2.0.0.beta4 features/builder.feature
middleman-2.0.0.beta3 features/builder.feature
middleman-1.2.8 features/builder.feature
middleman-2.0.0.beta2 features/builder.feature
middleman-1.2.7 features/builder.feature
middleman-1.2.6 features/builder.feature
middleman-1.2.5 features/builder.feature
middleman-1.2.4 features/builder.feature
middleman-1.2.3 features/builder.feature
middleman-1.2.2 features/builder.feature