Simple image host.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

sort-and-reverse.feature 668B

12345678910111213141516171819
  1. Feature: Sorting and reversing cursor regions
  2. Scenario: Reversing regions
  3. Given I have cursors at "text" in "This text contains the word text thrice (text here)"
  4. When I press "M-f"
  5. And I press "C-f"
  6. And I press "C-SPC"
  7. And I press "M-f"
  8. And I press "H-1"
  9. Then I should see "This text here the word text thrice (text contains)"
  10. Scenario: Sorting regions
  11. Given I have cursors at "text" in "This text contains the word text thrice (text here)"
  12. When I press "M-f"
  13. And I press "C-f"
  14. And I press "C-SPC"
  15. And I press "M-f"
  16. And I press "H-2"
  17. Then I should see "This text contains the word text here (text thrice)"