Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Commit

Permalink
fixed tabbing issues within the project_spec feature spec
Browse files Browse the repository at this point in the history
  • Loading branch information
zeknox committed Oct 24, 2015
1 parent ab60705 commit 144cb46
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions spec/features/projects_spec.rb
Expand Up @@ -8,18 +8,18 @@
end

it "list all existing projects" do
project = create(:project)
project = create(:project)
visit projects_path
expect(page).to have_content "WarVOX Projects"
within "#projects-table" do
expect(page).to have_content "Name"
expect(page).to have_content "Description"
expect(page).to have_content "Jobs"
expect(page).to have_content "Calls"
expect(page).to have_content "Analyzed"
expect(page).to have_content "Created"
expect(page).to have_content "Actions"
expect(page).to have_content project.name
end
within "#projects-table" do
expect(page).to have_content "Name"
expect(page).to have_content "Description"
expect(page).to have_content "Jobs"
expect(page).to have_content "Calls"
expect(page).to have_content "Analyzed"
expect(page).to have_content "Created"
expect(page).to have_content "Actions"
expect(page).to have_content project.name
end
end
end

0 comments on commit 144cb46

Please sign in to comment.