link-share/spec/features/admin/send_link_spec.rb

35 lines
820 B
Ruby

require 'spec_helper'
describe 'Admin Send Links' do
context 'when not logged in' do
it 'should not allow access to send links' do
visit '/send'
expect(page.status_code).to be(401)
end
end
context 'when logged in' do
let!(:links) { 10.times.collect { create(:link) } }
before(:each) { basic_auth 'admin', 'password' }
it 'should allow sending of a link' do
visit '/manage'
first('a', text: 'Send').click
expect(page).to have_content('Link has been marked as sent')
end
it 'should remove sent link from unsent list' do
link = create(:link)
visit '/manage'
find('a', text: link.title)
.find(:xpath, '../..')
.find('a', text: 'Send')
.click
expect(page).to_not have_content(link.title)
end
end
end