Sha256: 82148ffd400db4abe557b5d041a7b25bb2faa7a2c24b3bca9bc411bfeccde5ae

Contents?: true

Size: 1.17 KB

Versions: 11

Compression:

Stored size: 1.17 KB

Contents

Feature: Build with various target options.

  As a software developer
  I want to build output with different targets
  In order to deploy different versions of my project
  
  Scenario: Build with the default target (pro)
    Given a fixture app "middleman_targets_app"
    When I run `middleman build` interactively
    And I stop middleman if the output contains:
    """
    Project built successfully.
    """
    Then the output should contain:
    """
    Middleman will build using target "pro".
    """

  Scenario: Build with --target pro
    Given a fixture app "middleman_targets_app"
    When I run `middleman build --target pro` interactively
    And I stop middleman if the output contains:
    """
    Project built successfully.
    """
    Then the output should contain:
    """
    Middleman will build using target "pro".
    """

  Scenario: Build with --target free
    Given a fixture app "middleman_targets_app"
    When I run `middleman build --target free` interactively
    And I stop middleman if the output contains:
    """
    Project built successfully.
    """
    Then the output should contain:
    """
    Middleman will build using target "free".
    """

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
middleman-targets-1.0.14 features/build_target_option.feature
middleman-targets-1.0.13 features/build_target_option.feature
middleman-targets-1.0.12 features/build_target_option.feature
middleman-targets-1.0.11 features/build_target_option.feature
middleman-targets-1.0.10 features/build_target_option.feature
middleman-targets-1.0.9 features/build_target_option.feature
middleman-targets-1.0.8 features/build_target_option.feature
middleman-targets-1.0.7 features/build_target_option.feature
middleman-targets-1.0.6 features/build_target_option.feature
middleman-targets-1.0.5 features/build_target_option.feature
middleman-targets-1.0.4 features/build_target_option.feature