Sha256: d352fa337047240239dde4fc689621f96aaeefc9d5ae2b9e35a41a15ec03e4bf

Contents?: true

Size: 712 Bytes

Versions: 6

Compression:

Stored size: 712 Bytes

Contents

Feature: Rails Support

	Background:
		Given I setup the example rails app for testing
		And I clean the generated assets
	
	Scenario: Compiling assets
		When I run `guard` interactively
		And I wait 5 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 5 seconds
		And a file named "app/assets/javascripts/goodbye.coffee" with:
			"""
      console.log 'Goodbye'
      """
		And I wait 5 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/rails_support.feature
guard-sprockets2-0.0.5 features/rails_support.feature
guard-sprockets2-0.0.4 features/rails_support.feature
guard-sprockets2-0.0.3 features/rails_support.feature
guard-sprockets2-0.0.2 features/rails_support.feature
guard-sprockets2-0.0.1 features/rails_support.feature