redcar 0.6 → 0.6.1dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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"