project_labels.rb 586 Bytes
Newer Older
1
class ProjectLabels < Spinach::FeatureSteps
Nihad Abbasov's avatar
Nihad Abbasov committed
2 3 4 5
  include SharedAuthentication
  include SharedProject
  include SharedPaths

6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
  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