Sha256: fb7a812126a3c069576f5c370daaf43f7c19f8bfa6a584c7f172b281748e1c53

Contents?: true

Size: 1.57 KB

Versions: 7

Compression:

Stored size: 1.57 KB

Contents

Feature: Refresh directory tree

  Scenario: Does not refresh instantly
    Given I will choose "." from the "open_directory" dialog
    When I open a directory
    Then I should see "bin,config,lib,plugins" in the tree
    And I should not see "testyfile.txt" in the tree
    When I touch the file "./testyfile.txt"
    Then I should not see "testyfile.txt" in the tree

  Scenario: I can manually refresh the tree
    Given I will choose "." from the "open_directory" dialog
    When I open a directory
    Then I should see "bin,config,lib,plugins" in the tree
    And I should not see "testyfile.txt" in the tree
    When I touch the file "./testyfile.txt"
    And I refresh the directory tree
    Then I should see "bin,config,lib,plugins,testyfile.txt" in the tree
    
  Scenario: Changing windows refreshed the tree
    Given I will choose "." from the "open_directory" dialog
    When I open a directory
    Then I should see "bin,config,lib,plugins" in the tree
    And I should not see "testyfile.txt" in the tree
    When I touch the file "./testyfile.txt"
    When I open a new window
    And I focus the window "Redcar" through the gui
    Then I should see "bin,config,lib,plugins,testyfile.txt" in the tree
    
  Scenario: Refreshing the tree leaves rows expanded as they were before
    Given I will choose "." from the "open_directory" dialog
    When I open a directory
    And I expand the tree row "lib"
    Then I should see "bin,config,lib,freebase2,plugins" in the tree
    And I refresh the directory tree
    Then I should see "bin,config,lib,freebase2,plugins" in the tree
  

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
redcar-0.3.4.3 plugins/project/features/refresh_directory_tree.feature
redcar-0.3.4.2 plugins/project/features/refresh_directory_tree.feature
redcar-0.3.4.1 plugins/project/features/refresh_directory_tree.feature
redcar-0.3.4 plugins/project/features/refresh_directory_tree.feature
redcar-0.3.3 plugins/project/features/refresh_directory_tree.feature
redcar-0.3.2dev plugins/project/features/refresh_directory_tree.feature
redcar-0.3.1dev plugins/project/features/refresh_directory_tree.feature