Advertisement
Guest User

Untitled

a guest
Feb 17th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.03 KB | None | 0 0
  1. $ lettuce tests  # Background commented
  2.  
  3. Feature: Simple and successful                # tests/features/simple.feature:1
  4.   As the Lettuce maintainer                   # tests/features/simple.feature:2
  5.   In order to make sure the output is pretty  # tests/features/simple.feature:3
  6.   I want to automate its test                 # tests/features/simple.feature:4
  7.  
  8.   Scenario: multiplication changing the value # tests/features/simple.feature:9
  9.     Given the variable "X" is equal to 2      # tests/features/steps.py:5
  10.  
  11. 1 feature (1 passed)
  12. 1 scenario (1 passed)
  13. 1 step (1 passed)
  14.  
  15.  
  16. $ lettuce tests  # Background part uncommented
  17.  
  18. Feature: Simple and successful                # tests/features/simple.feature:1
  19.   As the Lettuce maintainer                   # tests/features/simple.feature:2
  20.   In order to make sure the output is pretty  # tests/features/simple.feature:3
  21.   I want to automate its test                 # tests/features/simple.feature:4
  22.  
  23.   Background:
  24.  
  25. 0 feature (0 passed)
  26. 0 scenario (0 passed)
  27. 0 step (0 passed)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement