summaryrefslogtreecommitdiff
path: root/features/steps/project/labels.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/project/labels.rb')
-rw-r--r--features/steps/project/labels.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/features/steps/project/labels.rb b/features/steps/project/labels.rb
index 73d00b0004e..6e792e94342 100644
--- a/features/steps/project/labels.rb
+++ b/features/steps/project/labels.rb
@@ -4,20 +4,14 @@ class ProjectLabels < Spinach::FeatureSteps
include SharedPaths
Then 'I should see label "bug"' do
- within ".labels-table" do
+ within ".manage-labels-list" do
page.should have_content "bug"
end
end
And 'I should see label "feature"' do
- within ".labels-table" do
+ within ".manage-labels-list" do
page.should have_content "feature"
end
end
-
- And 'project "Shop" have issues tags: "bug", "feature"' do
- project = Project.find_by(name: "Shop")
- label1 = create(:label, project: project, title: 'bug')
- label2 = create(:label, project: project, title: 'feature')
- end
end