Sha256: e35358314c8c6c1df320f4efa70d31076e839fe10316f6a9d0f1eae19d949ee4

Contents?: true

Size: 1.58 KB

Versions: 21

Compression:

Stored size: 1.58 KB

Contents

Feature: More default extensions

  Scenario: Default extensions preview
    Given the Server is running at "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 "implied-extensions-app"
    And a successfully built app at "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

21 entries across 21 versions & 1 rubygems

Version Path
middleman-more-3.0.14 features/implied_extensions.feature
middleman-more-3.1.0.beta.3 features/implied_extensions.feature
middleman-more-3.1.0.beta.2 features/implied_extensions.feature
middleman-more-3.1.0.beta.1 features/implied_extensions.feature
middleman-more-3.0.13 features/implied_extensions.feature
middleman-more-3.0.12 features/implied_extensions.feature
middleman-more-3.0.12.pre.1 features/implied_extensions.feature
middleman-more-3.0.11 features/implied_extensions.feature
middleman-more-3.0.10.pre.1 features/implied_extensions.feature
middleman-more-3.0.9 features/implied_extensions.feature
middleman-more-3.0.8 features/implied_extensions.feature
middleman-more-3.0.8.pre.2 features/implied_extensions.feature
middleman-more-3.0.8.pre.1 features/implied_extensions.feature
middleman-more-3.0.7 features/implied_extensions.feature
middleman-more-3.0.6 features/implied_extensions.feature
middleman-more-3.0.5 features/implied_extensions.feature
middleman-more-3.0.4 features/implied_extensions.feature
middleman-more-3.0.2 features/implied_extensions.feature
middleman-more-3.0.1.pre features/implied_extensions.feature
middleman-more-3.0.0 features/implied_extensions.feature