Sha256: c2d03c48287dbe5b188131a85f01ea9a0f96f53063b184fed31a913124dd6097

Contents?: true

Size: 1.28 KB

Versions: 5

Compression:

Stored size: 1.28 KB

Contents

@javascript
Feature: Conflict
  I want to be able to upload files and images.

  Background:
    Given I am signed in as Joe Admin

  Scenario: Uploading a file
    When I go to new File
    And I upload the file "file.txt"
    And I wait a sec
    Then I should see "file.txt 9 Bytes"
    When I press "Delete"
    Then I should see "Add file..."
    When I upload the file "file.txt"
    And I wait a sec
    And I fill in "card_name" with "a test file"
    And I press "Submit"
    Then I should see "Download a test file"

  Scenario: Uploading and changing an image
    When I go to new Image
    And I upload the image "image.png"
    And I wait a sec
    Then I should see "image.png 34.3 KB"
    And I fill in "card_name" with "a test image"
    And I press "Submit"
    Then I should see an image of size "large" and type "png"
    And I edit "a test image"
    And I upload the image "image2.jpg"
    And I wait a sec
    Then I should see "image2.jpg 69.8 KB"
    And I press "Submit"
    Then I should see an image of size "large" and type "jpg"

  Scenario: Changing a mod image
    When I edit "*logo"
    And I upload the image "image2.jpg"
    And I wait a sec
    Then I should see "image2.jpg 69.8 KB"
    And I press "Submit"
    Then I should see an image of size "large" and type "jpg"


Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wagn-1.16.8 features/attach.feature
wagn-1.16.7 features/attach.feature
wagn-1.16.6 features/attach.feature
wagn-1.16.5 features/attach.feature
wagn-1.16.4 features/attach.feature