redcar 0.6 → 0.6.1dev

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,15 +0,0 @@
1
- Feature: Sort Lines
2
-
3
- Background:
4
- When I open a new edit tab
5
-
6
- Scenario: Sort Lines sorts the lines in selected region
7
- When I replace the contents with "3\n2\n1"
8
- And I select from 0 to 10
9
- And I run the command Redcar::Top::SortLinesCommand
10
- Then the contents should be "1\n2\n3"
11
-
12
- Scenario: Nothing is sorted when nothing is selected
13
- When I replace the contents with "3\n2\n1"
14
- And I run the command Redcar::Top::SortLinesCommand
15
- Then the contents should be "3\n2\n1"