Sha256: 84fc22673e0bdbd6b8f47e1d783ca3d7a6e302a907d9883a06bfa8c8424079fb

Contents?: true

Size: 1.22 KB

Versions: 11

Compression:

Stored size: 1.22 KB

Contents

Feature: Run the preview server with various target options.

  As a software developer
  I want to start the preview server with different targets
  In order to view my changes immediately in the browser
  
  Background:
    Given a fixture app "middleman_targets_app"
    And the default aruba timeout is 30 seconds
    
  Scenario: Start the server with the default target (pro)
    When I run `middleman server` interactively
    And I stop middleman if the output contains:
    """
    Inspect your site configuration
    """
    And the output should contain:
    """
    Middleman will serve using target "pro"
    """

  Scenario: Start the server with the --pro target
    When I run `middleman server --target pro` interactively
    And I stop middleman if the output contains:
    """
    Inspect your site configuration
    """
    And the output should contain:
    """
    Middleman will serve using target "pro"
    """

  Scenario: Start the server with the --free target
    When I run `middleman server --target free` interactively
    And I stop middleman if the output contains:
    """
    Inspect your site configuration
    """
    And the output should contain:
    """
    Middleman will serve using target "free"
    """

Version data entries

11 entries across 11 versions & 1 rubygems

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