-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathprograms.feature
More file actions
29 lines (23 loc) · 976 Bytes
/
programs.feature
File metadata and controls
29 lines (23 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Feature: Access Programs
As a user of the site, I want to access users' programs
Scenario: View a featured program
Given there is a featured program
Then I should be able to view a highlighted program
Scenario: View my programs
Given a logged in user
And I have uploaded a program
Then I should be able to view my programs
Scenario: View another user's programs
Given a user has uploaded a program
Then I should be able to view their programs
Scenario: View an individual program
Given a user has uploaded a program
And I should be able to view their programs
When I click the first program link
Then I should see the program source
Scenario: View a program with a description
Given a user has uploaded a program
And they have given their program a description
And I should be able to view their programs
When I click the first program link
Then I should see the description of their program