blob: 6e792e943425aaf0b94961fac1e8b05ac13f7eae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class ProjectLabels < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths
Then 'I should see label "bug"' do
within ".manage-labels-list" do
page.should have_content "bug"
end
end
And 'I should see label "feature"' do
within ".manage-labels-list" do
page.should have_content "feature"
end
end
end
|