Created
December 10, 2008 14:07
-
-
Save ngty/34330 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Upload Data # features/basic/upload.feature | |
In order to make mspots.org easy to use | |
I should be able to upload data file to generate mspots | |
Scenario Outline: Uploading Data File # features/basic/upload.feature:9 | |
Given I am using <browser> to go to / # features/basic/upload.feature:10 | |
When I press on "Select a Spreadsheet to Upload" # features/basic/upload.feature:11 | |
And I attach "<file>" # features/basic/upload.feature:12 | |
Then I should see "Processing Upload" status indicator # features/basic/upload.feature:13 | |
|browser|file | | |
|firefox|/tmp/locations.xls | | |
|firefox|/tmp/locations.ods | | |
|firefox|/tmp/locations.gnumeric| | |
Scenario Outline: Downloading Sample Data File # features/basic/upload.feature:22 | |
Given I am using <browser> to go to / # features/basic/upload.feature:23 | |
When I select "<option>" in "Download Sample Spreadsheet" # features/basic/upload.feature:24 | |
Then I should be able to download "<sample>" # features/basic/upload.feature:25 | |
|browser|option |file | | |
|firefox|Openoffice Sample (*.ods) | | |
|firefox |Gnumeric Sample (*.gnumeric)| | |
|firefox |MS Excel Sample (*.xls) | | |
15 steps passed | |
6 steps pending (6 with no step definition) | |
Finished in 0.003491 seconds | |
0 examples, 0 failures |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Upload Data | |
In order to make mspots.org easy to use | |
I should be able to upload data file to generate mspots | |
Scenario Outline: Uploading Data File | |
Given I am using <browser> to go to / | |
When I press on "Select a Spreadsheet to Upload" | |
And I attach "<file>" | |
Then I should see "Processing Upload" status indicator | |
Examples: | |
| browser | file | | |
| firefox | /tmp/locations.xls | | |
| firefox | /tmp/locations.ods | | |
| firefox | /tmp/locations.gnumeric | | |
Scenario Outline: Downloading Sample Data File | |
Given I am using <browser> to go to / | |
When I select "<option>" in "Download Sample Spreadsheet" | |
Then I should be able to download "<sample>" | |
Examples: | |
| browser | option | file | | |
| firefox | Openoffice Sample (*.ods) | locations-sample.ods | | |
| firefox | Gnumeric Sample (*.gnumeric) | locations-sample.gnumeric | | |
| firefox | MS Excel Sample (*.xls) | locations-sample.xls | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment