Sha256: 9efdbd1027976d415dc5ad0f1c5b139131c427cd233fc925e4d5e5ca43eda0df

Contents?: true

Size: 1.2 KB

Versions: 40

Compression:

Stored size: 1.2 KB

Contents

Feature: Build Clean
  Scenario: Build and Clean an app
    Given a fixture app "clean-app"
    And app "clean-app" is using config "empty"
    And a successfully built app at "clean-app"
    Then the following files should exist:
      | build/index.html              |
      | build/should_be_ignored.html  |
      | build/should_be_ignored2.html |
      | build/should_be_ignored3.html |
    And app "clean-app" is using config "complications"
    Given a successfully built app at "clean-app" with flags "--clean"
    Then the following files should not exist:
      | build/should_be_ignored.html  |
      | build/should_be_ignored2.html |
      | build/should_be_ignored3.html |
    And the file "build/index.html" should contain "Comment in layout"

  Scenario: Clean build an app with newly ignored files and a nested output directory
    Given a built app at "clean-nested-app"
    Then a directory named "sub/dir" should exist
    Then the following files should exist:
      | sub/dir/about.html        |
    When I append to "config.rb" with "ignore 'about.html'"
    Given a built app at "clean-nested-app" with flags "--clean"
    Then the following files should not exist:
      | sub/dir/about.html        |
      

Version data entries

40 entries across 40 versions & 2 rubygems

Version Path
middleman-core-x86-mingw32-3.0.14 features/clean_build.feature
middleman-core-3.0.14 features/clean_build.feature
middleman-core-x86-mingw32-3.0.13 features/clean_build.feature
middleman-core-3.0.13 features/clean_build.feature
middleman-core-x86-mingw32-3.0.12 features/clean_build.feature
middleman-core-3.0.12 features/clean_build.feature
middleman-core-x86-mingw32-3.0.12.pre.1 features/clean_build.feature
middleman-core-3.0.12.pre.1 features/clean_build.feature
middleman-core-x86-mingw32-3.0.11 features/clean_build.feature
middleman-core-3.0.11 features/clean_build.feature
middleman-core-x86-mingw32-3.0.10 features/clean_build.feature
middleman-core-x86-mingw32-3.0.10.pre.1 features/clean_build.feature
middleman-core-3.0.10.pre.1 features/clean_build.feature
middleman-core-x86-mingw32-3.0.9 features/clean_build.feature
middleman-core-3.0.9 features/clean_build.feature
middleman-core-x86-mingw32-3.0.8 features/clean_build.feature
middleman-core-3.0.8 features/clean_build.feature
middleman-core-x86-mingw32-3.0.8.pre.2 features/clean_build.feature
middleman-core-3.0.8.pre.2 features/clean_build.feature
middleman-core-x86-mingw32-3.0.8.pre.1 features/clean_build.feature