Sha256: c182e9bcfdafece70f3f96e649dd46f433ab34d9b7b28636794b299d88b513f6

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

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
    Then "spaces in file.html" should exist and include "spaces"
    Then "images/Read me (example).txt" should exist
    Then "images/Child folder/regular_file(example).txt" should exist
    And cleanup built test app
    
  Scenario: Force relative assets
    Given a built test app with flags "--relative"
    Then "stylesheets/relative_assets.css" should exist and include "../"
    And cleanup built test app

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-2.0.0.rc92 features/builder.feature
middleman-2.0.0.rc91 features/builder.feature