Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
moozzi committed May 20, 2024
1 parent 3059a7d commit 7514a3f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions spec/routes/db_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,6 @@
it 'must return status 200 and include records data' do
visit "/db/phone_numbers/#{phone_number.id}"

expect(page.html).to eq("foo")
expect(page.status_code).to eq(200)
expect(page).to have_xpath(header_xpath)
end
Expand All @@ -525,7 +524,6 @@
it 'must return status 200 and include link to a street address in the body' do
visit '/db/street_addresses'

expect(page.html).to eq("foo")
expect(page.status_code).to eq(200)
expect(page).to have_xpath(xpath)
end
Expand All @@ -538,6 +536,7 @@
it 'must return status 200 and include records data' do
visit "/db/street_addresses/#{street_address.id}"

expect(page.html).to eq("foo")
expect(page.status_code).to eq(200)
expect(page).to have_xpath(header_xpath)
end
Expand All @@ -562,7 +561,6 @@
it 'must return status 200 and include records data' do
visit "/db/organizations/#{organization.id}"

expect(page.html).to eq("foo")
expect(page.status_code).to eq(200)
expect(page).to have_xpath(header_xpath)
end
Expand All @@ -587,7 +585,6 @@
it 'must return status 200 and include records data' do
visit "/db/people/#{person.id}"

expect(page.html).to eq("foo")
expect(page.status_code).to eq(200)
expect(page).to have_xpath(header_xpath)
end
Expand Down

0 comments on commit 7514a3f

Please sign in to comment.