Sha256: 5b0427f7e49bb762b597645b8bb6e7fa4808fdc6f6b8595445bbd3b0340fcb1c

Contents?: true

Size: 638 Bytes

Versions: 3

Compression:

Stored size: 638 Bytes

Contents

Feature: Environment-friendly

	In order to not mess up my system or tests
	As a developer using Cucumber
	I want Aruba-Doubles to behave environment-friendly

	Scenario: Create doubles directory only when necessary
		When I run `ls`
		Then the doubles directory should not exist

	Scenario: Patch the original path only once
		Given a double of "ls"
		And a double of "ls"
		Then the path should include 1 doubles directory

	Scenario: Create doubles directory...
		Given a double of "ls"
		When I keep the doubles directory in mind
	
	Scenario: ...and check that it was deleted
		Then the previous doubles directory should not exist

		

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
aruba-doubles-0.1.1 features/environment-friendly.feature
aruba-doubles-0.1.0 features/environment-friendly.feature
aruba-doubles-0.0.2 features/environment-friendly.feature