Added tests for issues without a relative_position

This commit is contained in:
Phil Hughes 2017-03-02 11:42:24 +00:00
parent 4fa8e0d1a4
commit 1bb32a790d
1 changed files with 25 additions and 0 deletions

View File

@ -19,6 +19,31 @@ describe 'Issue Boards', :feature, :js do
login_as(user)
end
context 'un-ordered issues' do
let!(:issue4) { create(:labeled_issue, project: project, labels: [label]) }
before do
visit namespace_project_board_path(project.namespace, project, board)
wait_for_vue_resource
expect(page).to have_selector('.board', count: 2)
end
it 'has un-ordered issue as last issue' do
page.within(first('.board')) do
expect(all('.card').last).to have_content(issue4.title)
end
end
it 'moves un-ordered issue to top of list' do
drag(from_index: 3, to_index: 0)
page.within(first('.board')) do
expect(first('.card')).to have_content(issue4.title)
end
end
end
context 'ordering in list' do
before do
visit namespace_project_board_path(project.namespace, project, board)