summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-04-22 14:58:18 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-04-22 14:58:18 +0000
commita600b4b1c08c374e336cbd4226d2ff77c8ff9cca (patch)
tree91f8394f732ea3127557df415c7ac4d1fd0245a2 /spec
parentd5398e9656c1174d4d5be5a8cdad2a26d7587a27 (diff)
parent32be8bd2b105885d88e1ad8d5bf1296f974031ab (diff)
downloadgitlab-ce-a600b4b1c08c374e336cbd4226d2ff77c8ff9cca.tar.gz
Merge branch 'fix-issue-with-assignee-not-updating' into 'master'
Fixed issue with assignee object not being returned Closes #15515 See merge request !3877
Diffstat (limited to 'spec')
-rw-r--r--spec/features/issues_spec.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/features/issues_spec.rb b/spec/features/issues_spec.rb
index b1d49875ac4..b57131f68d5 100644
--- a/spec/features/issues_spec.rb
+++ b/spec/features/issues_spec.rb
@@ -317,6 +317,27 @@ describe 'Issues', feature: true do
expect(issue.reload.assignee).to be_nil
end
+
+ it 'allows user to select an assignee', js: true do
+ issue2 = create(:issue, project: project, author: @user)
+ visit namespace_project_issue_path(project.namespace, project, issue2)
+
+ page.within('.assignee') do
+ expect(page).to have_content "No assignee"
+ end
+
+ page.within '.assignee' do
+ click_link 'Edit'
+ end
+
+ page.within '.dropdown-menu-user' do
+ click_link @user.name
+ end
+
+ page.within('.assignee') do
+ expect(page).to have_content @user.name
+ end
+ end
end
context 'by unauthorized user' do