Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

insert-numbers.feature 529B

12345678910111213
  1. Feature: Insert increasing numbers
  2. Scenario: Three cursors, 0-1-2
  3. Given I have cursors at "text" in "This text contains the word text thrice (text)"
  4. When I press "H-0"
  5. And I press "SPC"
  6. Then I should see "This 0 text contains the word 1 text thrice (2 text)"
  7. Scenario: Three cursors, 9-10-11
  8. Given I have cursors at "text" in "This text contains the word text thrice (text)"
  9. When I press "C-9 H-0"
  10. And I press "SPC"
  11. Then I should see "This 9 text contains the word 10 text thrice (11 text)"