Merge pull request #577 from internetee/registry-569

Registry 569
This commit is contained in:
Timo Võhmar 2017-10-05 15:47:28 +03:00 committed by GitHub
commit 9565f23e68
50 changed files with 2463 additions and 323 deletions

View file

@ -0,0 +1,12 @@
require 'rails_helper'
RSpec.feature 'Contact list', settings: false do
background do
sign_in_to_admin_area
end
it 'is visible' do
visit admin_contacts_path
expect(page).to have_css('.contacts')
end
end