Sha256: 7bfa222c308cb0220cee405e45a40d671bad3774ef738ade6d295914785ccc9d

Contents?: true

Size: 1.39 KB

Versions: 9

Compression:

Stored size: 1.39 KB

Contents

Feature: Indentation commands

  Scenario: Increase indent, soft tabs, width 2
    When I open a new edit tab
    And tabs are soft, 2 spaces
    And I run the command Redcar::Top::IncreaseIndentCommand
    Then the contents should be "  "
    
  Scenario: Decrease indent, soft tabs, width 2
    When I open a new edit tab
    And tabs are soft, 2 spaces
    And I replace the contents with "<c>    "
    And I run the command Redcar::Top::DecreaseIndentCommand
    Then the contents should be "  "

  Scenario: Increase indent, soft tabs, width 3
    When I open a new edit tab
    And tabs are soft, 3 spaces
    And I run the command Redcar::Top::IncreaseIndentCommand
    Then the contents should be "   "
    
  Scenario: Decrease indent, soft tabs, width 3
    When I open a new edit tab
    And tabs are soft, 3 spaces
    And I replace the contents with "<c>      "
    And I run the command Redcar::Top::DecreaseIndentCommand
    Then the contents should be "   "

  Scenario: Increase indent, hard tabs, width 2
    When I open a new edit tab
    And tabs are hard
    And I run the command Redcar::Top::IncreaseIndentCommand
    Then the contents should be "\t"
    
  Scenario: Decrease indent, hard tabs, width 2
    When I open a new edit tab
    And tabs are hard
    And I replace the contents with "<c>\t\t"
    And I run the command Redcar::Top::DecreaseIndentCommand
    Then the contents should be "\t"

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
redcar-0.3.8.4 plugins/edit_view/features/indentation_commands.feature
redcar-0.3.8.3 plugins/edit_view/features/indentation_commands.feature
redcar-0.3.8.2 plugins/edit_view/features/indentation_commands.feature
redcar-0.3.8.1 plugins/edit_view/features/indentation_commands.feature
redcar-0.3.8 plugins/edit_view/features/indentation_commands.feature
redcar-0.3.7.1 plugins/edit_view/features/indentation_commands.feature
redcar-0.3.7 plugins/edit_view/features/indentation_commands.feature
redcar-0.3.6 plugins/edit_view/features/indentation_commands.feature
redcar-0.3.5 plugins/edit_view/features/indentation_commands.feature