Sha256: 87b6fa04f7cdb405c27cc6debd5b11313e5343ec171641bfb360c460d7e44718

Contents?: true

Size: 712 Bytes

Versions: 6

Compression:

Stored size: 712 Bytes

Contents

Feature: Sinatra Support

	Background:
		Given I setup the example sinatra app for testing
		And I clean the generated assets
	
	Scenario: Compiling assets
		When I run `guard` interactively
		And I wait 3 seconds
		And I stop the process
		Then the output should contain "Compiling assets"
		And the hello asset should be compiled
	
	Scenario: Re-compiling assets
		When I run `guard` interactively
		And I wait 3 seconds
		And a file named "assets/javascripts/goodbye.coffee" with:
			"""
      console.log 'Goodbye'
      """
		And I wait 3 seconds
		And I stop the process
		Then the output should contain "Compiling assets"
		And the hello asset should be compiled
		And the goodbye asset should be compiled

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
guard-sprockets2-0.0.6 features/sinatra_support.feature
guard-sprockets2-0.0.5 features/sinatra_support.feature
guard-sprockets2-0.0.4 features/sinatra_support.feature
guard-sprockets2-0.0.3 features/sinatra_support.feature
guard-sprockets2-0.0.2 features/sinatra_support.feature
guard-sprockets2-0.0.1 features/sinatra_support.feature