Sha256: e66bd7a78e811e0d1758012e09fd078329a31c49745f64a45974314ead5bbfc9

Contents?: true

Size: 680 Bytes

Versions: 3

Compression:

Stored size: 680 Bytes

Contents

@javascript
Feature: History
  As an editor 
  I want to be able to browse through the history and save an old version as current.
  
  Background:
    Given I am signed in as Joe Admin
    Then the card First should not contain "chicken"
    
  Scenario: view history and rollback 
    When I go to url "/First?view=history" 
    Then In the main card content I should see a del with content "egg"
    
    When I expand act 2
    And In the main card content I click "Hide changes"
    Then In the main card content I should not see a del with content "egg"

    When In the main card content I click "Save as current"
    Then the card First should contain "chicken"
    
    

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wagn-1.14.4 features/history.feature
wagn-1.14.3 features/history.feature
wagn-1.14.2 features/history.feature