Sha256: 66be456ac50b40c2f2d0afd0e8ff091b9b3fb66c6f9807fa6b714a1656c8e6a4
Contents?: true
Size: 943 Bytes
Versions: 35
Compression:
Stored size: 943 Bytes
Contents
Feature: Text navigation commands Background: Given I open a new edit tab Scenario: Move forward char When I replace the contents with "Foo\nBar\nBaz" And I move the cursor to 0 And I run the command Redcar::Top::ForwardCharCommand Then the cursor should be at 1 Scenario: Move forward char at end of document When I replace the contents with "Foo" And I move the cursor to 3 And I run the command Redcar::Top::ForwardCharCommand Then the cursor should be at 3 Scenario: Move backward char When I replace the contents with "Foo\nBar\nBaz" And I move the cursor to 3 And I run the command Redcar::Top::BackwardCharCommand Then the cursor should be at 2 Scenario: Move backward char at beginning of document When I replace the contents with "Foo" And I move the cursor to 0 And I run the command Redcar::Top::BackwardCharCommand Then the cursor should be at 0
Version data entries
35 entries across 35 versions & 2 rubygems