simple.feature 316 B

123456789101112131415
  1. Feature: Simple service up
  2. Background:
  3. Given a compose file
  4. """
  5. services:
  6. simple:
  7. image: alpine
  8. command: top
  9. """
  10. Scenario: compose up
  11. When I run "compose up -d"
  12. Then the output contains "simple-1 Started"
  13. And service "simple" is "running"