projects_feature.rb 1.52 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
class Spinach::Features::PublicProjectsFeature < Spinach::FeatureSteps
  include SharedPaths

  step 'I should see project "Community"' do
    page.should have_content "Community"
  end

  step 'I should not see project "Enterprise"' do
    page.should_not have_content "Enterprise"
  end

12 13 14 15 16
  step 'I should see project "Empty Public Project"' do
    page.should have_content "Empty Public Project"
    puts page.save_page('foo.html')
  end

17 18 19 20 21 22 23 24 25 26 27 28 29
  step 'I should see public project details' do
    page.should have_content '32 branches'
    page.should have_content '16 tags'
  end

  step 'I should see project readme' do
    page.should have_content 'README.md'
  end

  step 'public project "Community"' do
    create :project_with_code, name: 'Community', public: true
  end

30 31 32 33
  step 'public empty project "Empty Public Project"' do
    create :project, name: 'Empty Public Project', public: true
  end

34
  step 'I visit empty project page' do
35
    project = Project.find_by_name('Empty Public Project')
36 37 38 39 40 41
    visit project_path(project)
  end

  step 'I visit project "Community" page' do
    project = Project.find_by_name('Community')
    visit project_path(project)
42 43 44
  end

  step 'I should see empty public project details' do
45
    page.should have_content 'Git global setup'
46 47
  end

48 49 50 51
  step 'private project "Enterprise"' do
    create :project, name: 'Enterprise'
  end

52 53 54 55
  step 'I should see project "Community" home page' do
    page.should have_content 'Repo size is'
  end

56 57 58 59 60 61 62
  private

  def project
    @project ||= Project.find_by_name("Community")
  end
end