Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 373
- Log:
Initial import of Radiant 0.9.1, which is now packaged as a gem. This is an
import of the tagged 0.9.1 source checked out from GitHub, which isn't quite
the same as the gem distribution - but it doesn't seem to be available in an
archived form and the installed gem already has modifications, so this is
the closest I can get.
- Author:
- rool
- Date:
- Mon Mar 21 13:40:05 +0000 2011
- Size:
- 990 Bytes
1 | Feature: Edit user preferences |
2 | In order to keep my credentials secure and information up-to-date |
3 | As a user I want to update my preferences |
4 | |
5 | Scenario Outline: Edit preferences |
6 | Given I am logged in as "<username>" |
7 | When I open my preferences |
8 | And I fill in "E-mail Address" with "my-new-email@example.com" |
9 | And I press "Save Changes" |
10 | Then I should be on the preferences screen |
11 | |
12 | Examples: |
13 | | username | |
14 | | admin | |
15 | | another | |
16 | | existing | |
17 | | designer | |
18 | | non_admin | |
19 | |
20 | Scenario Outline: Save invalid preferences |
21 | Given I am logged in as "<username>" |
22 | When I open my preferences |
23 | And I fill in "Username" with "" |
24 | And I press "Save Changes" |
25 | Then I should be on the preferences screen |
26 | And I should see "this must not be blank" |
27 | And I should see "Personal" |
28 | |
29 | Examples: |
30 | | username | |
31 | | admin | |
32 | | another | |
33 | | existing | |
34 | | designer | |
35 | | non_admin | |