Sha256: fe48a8e08561c9c1a0868adb0ce92436c15ce03961b3bcc508636ea3afbb5e7c

Contents?: true

Size: 1.1 KB

Versions: 19

Compression:

Stored size: 1.1 KB

Contents

Feature: Block selection in macros
 The macros should behave correctly around block selection mode.

 Background:
   When I open a new edit tab
   Given the content is:
       """
       foo
       bar
       baz
       """
   And I move to the start of the text
   
 Scenario: Set the correct block selection mode before running the macro
   When I turn block selection on
   And I start recording a macro
   And I select down
   And I select down
   And I type "a"
   And I stop recording a macro
   And I turn block selection off
   And I move to the start of the text
   And I run the last recorded macro
   Then the content should be:
       """
       aafoo
       aabar
       aabaz
       """
       
 Scenario: Change block selection mode during the macro
   And I start recording a macro
   When I turn block selection on
   And I select down
   And I select down
   And I type "a"
   And I stop recording a macro
   And I turn block selection off
   And I move to the start of the text
   And I run the last recorded macro
   Then the content should be:
       """
       aafoo
       aabar
       aabaz
       """

    

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
redcar-0.13 plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.13.5dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.13.4dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.13.3dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.13.2dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.13.1dev plugins/macros/features/block_selection_in_macros.feature
redcar-0.12.1 plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.13.0dev plugins/macros/features/block_selection_in_macros.feature
redcar-0.12 plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.27dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.26dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.25dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.24dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.23dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.22dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.21dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.20dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.19dev plugins/macros/features/block_selection_in_macros.feature
redcar-dev-0.12.18dev plugins/macros/features/block_selection_in_macros.feature