Sha256: e3d5d1390c4f5b48467733f7ee24cead921b4e0634e8e74d4acfb40f19c66c83

Contents?: true

Size: 1.59 KB

Versions: 6

Compression:

Stored size: 1.59 KB

Contents

Feature: More default extensions

  Scenario: Default extensions preview
    Given the Server is running at "more-implied-extensions-app"
    When I go to "/test.html"
    Then I should see "Hello"
    When I go to "/test2.html"
    Then I should see "World"
    When I go to "/test3.html"
    Then I should see "Howdy"
    When I go to "/test4.html"
    Then I should see "HELLO"
    When I go to "/javascripts/app.js"
    Then I should see "derp"
    When I go to "/stylesheets/style.css"
    Then I should see "section"
    When I go to "/stylesheets/style2.css"
    Then I should see "section"
    When I go to "/stylesheets/style3.css"
    Then I should see "color"
  
  Scenario: Default extensions build
    Given a fixture app "more-implied-extensions-app"
    And a successfully built app at "more-implied-extensions-app"
    When I cd to "build"
    Then the following files should exist:
      | test.html              |
      | test2.html             |
      | test3.html             |
      | test4.html             |
      | javascripts/app.js     |
      | stylesheets/style.css  |
      | stylesheets/style2.css |
      | stylesheets/style3.css |
    And the file "test.html" should contain "Hello"
    And the file "test2.html" should contain "World"
    And the file "test3.html" should contain "Howdy"
    And the file "test4.html" should contain "HELLO"
    And the file "javascripts/app.js" should contain "derp"
    And the file "stylesheets/style.css" should contain "section"
    And the file "stylesheets/style2.css" should contain "section"
    And the file "stylesheets/style3.css" should contain "color"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
middleman-core-3.1.1 features/more-implied_extensions.feature
middleman-core-3.1.0 features/more-implied_extensions.feature
middleman-core-3.1.0.rc.4 features/more-implied_extensions.feature
middleman-core-3.1.0.rc.3 features/more-implied_extensions.feature
middleman-core-3.1.0.rc.2 features/more-implied_extensions.feature
middleman-core-3.1.0.rc.1 features/more-implied_extensions.feature