Sha256: f1f63103b5d7734503cc942a3e0bc5760f3225387c9dab8f7d2f190555d79cba

Contents?: true

Size: 633 Bytes

Versions: 1

Compression:

Stored size: 633 Bytes

Contents

Feature: Test debug mode

  Scenario: Normally should not see any debugging output

		Given a file named "spoon_config" with:
		"""
		options[:url] = "tcp://127.0.0.1:2375"
		options[:image] = "spoon_test"
		"""

		When I run `spoon -c spoon_config -l`
		Then the exit status should be 0
		And the output should not contain "D: "

  Scenario: With --debug I should see debug output

		Given a file named "spoon_config" with:
		"""
		options[:url] = "tcp://127.0.0.1:2375"
		options[:image] = "spoon_test"
		"""

		When I run `spoon -c spoon_config -l --debug`
		Then the exit status should be 0
		And the output should contain "D: "

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
docker-spoon-1.0.0 features/debug.feature