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