settings

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

sort-and-reverse.feature (668B)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Feature: Sorting and reversing cursor regions

  Scenario: Reversing regions
    Given I have cursors at "text" in "This text contains the word text thrice (text here)"
    When I press "M-f"
    And I press "C-f"
    And I press "C-SPC"
    And I press "M-f"
    And I press "H-1"
    Then I should see "This text here the word text thrice (text contains)"

  Scenario: Sorting regions
    Given I have cursors at "text" in "This text contains the word text thrice (text here)"
    When I press "M-f"
    And I press "C-f"
    And I press "C-SPC"
    And I press "M-f"
    And I press "H-2"
    Then I should see "This text contains the word text here (text thrice)"