Sha256: 944c126c7b6ee5259200f5ecbfaf16f9f1164a5a4f248121f06b765302890265

Contents?: true

Size: 1.36 KB

Versions: 9

Compression:

Stored size: 1.36 KB

Contents

Feature: Run Loris

	Scenario: Creating a file triggers loris
		Given I run loris --debug
		When I create a file named "created.txt"
		And I wait until loris has finished processing changes
		Then I should see "created.txt" in the Loris output 
		And I should not see any errors
	
	Scenario: Modifying a file triggers loris
		Given I create a file named "modified.txt"
		When I run loris --debug
		And I wait until loris has finished processing changes
		And I start recording the Loris output
		And I modify the "modified.txt" file
		And I wait until loris has finished processing changes
		Then I should see "modified.txt" in the recorded output 
		And I should not see any errors
	
	Scenario: Modified only triggered once
		Given I create a file named "modified.txt"
		When I run loris --debug
		And I wait until loris has finished processing changes
		And I start recording the Loris output
		And I modify the "modified.txt" file
		And I wait until loris has finished processing changes
		And I wait until loris has finished processing changes
		Then I should only see "modified.txt" once in the recorded output 
		And I should not see any errors

	Scenario: Directories not included
		Given I run loris --debug
		When I create a directory named "dir"
		And I wait until loris has finished processing changes
		Then I should NOT see "dir" in the Loris output
		And I should not see any errors

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
karl-loris-0.0.10 features/run.feature
karl-loris-0.0.11 features/run.feature
karl-loris-0.0.9 features/run.feature
loris-0.1.1 features/run.feature
loris-0.1.0 features/run.feature
loris-0.0.16 features/run.feature
loris-0.0.15 features/run.feature
loris-0.0.14 features/run.feature
loris-0.0.12 features/run.feature