diff options
Diffstat (limited to 'features/steps/project/project_labels.rb')
-rw-r--r-- | features/steps/project/project_labels.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/features/steps/project/project_labels.rb b/features/steps/project/project_labels.rb new file mode 100644 index 00000000000..1a347bf358f --- /dev/null +++ b/features/steps/project/project_labels.rb @@ -0,0 +1,24 @@ +class ProjectLabels < Spinach::FeatureSteps + include SharedAuthentication + include SharedProject + include SharedPaths + + Then 'I should see label "bug"' do + within ".labels-table" do + page.should have_content "bug" + end + end + + And 'I should see label "feature"' do + within ".labels-table" do + page.should have_content "feature" + end + end + + And 'project "Shop" have issues tags: "bug", "feature"' do + project = Project.find_by_name("Shop") + ['bug', 'feature'].each do |label| + Factory :issue, project: project, label_list: label + end + end +end |