debian-mirror-gitlab/spec/features/users/snippets_spec.rb

19 lines
529 B
Ruby
Raw Normal View History

2016-09-29 09:46:39 +05:30
require 'spec_helper'
describe 'Snippets tab on a user profile', feature: true, js: true do
include WaitForAjax
context 'when the user has snippets' do
2016-10-01 15:18:49 +05:30
let(:user) { create(:user) }
let!(:snippets) { create_list(:snippet, 2, :public, author: user) }
2016-09-29 09:46:39 +05:30
before do
2016-10-01 15:18:49 +05:30
allow(Snippet).to receive(:default_per_page).and_return(1)
2016-09-29 09:46:39 +05:30
visit user_path(user)
page.within('.user-profile-nav') { click_link 'Snippets' }
wait_for_ajax
end
2016-10-01 15:18:49 +05:30
it_behaves_like 'paginated snippets', remote: true
2016-09-29 09:46:39 +05:30
end
end