allow build to use glob

This commit is contained in:
Thomas Reynolds 2011-09-12 16:15:51 -07:00
parent bc7ee29486
commit 61d7e8abed
6 changed files with 74 additions and 20 deletions

View file

@ -17,6 +17,12 @@ Feature: Builder
Then "images/Child folder/regular_file(example).txt" should exist at "test-app"
And cleanup built app at "test-app"
Scenario: Build glob
Given a built app at "glob-app" with flags "--glob '**/*.sass'"
Then "stylesheets/site.css" should exist at "glob-app" and include "html"
Then "index.html" should not exist at "glob-app"
And cleanup built app at "glob-app"
# Scenario: Force relative assets
# Given a built app at "relative-app" with flags "--relative"
# Then "stylesheets/relative_assets.css" should exist at "relative-app" and include "../"