diff options
author | Zeger-Jan van de Weg <zegerjan@gitlab.com> | 2016-03-25 22:21:50 +0100 |
---|---|---|
committer | Zeger-Jan van de Weg <zegerjan@gitlab.com> | 2016-03-28 16:45:36 +0200 |
commit | 473b261261ab89fb921d12f05926ad9e9de5faee (patch) | |
tree | 4188b3b9e8c7a33065f24e63412380ec0d47c2a9 /spec | |
parent | 43e49f52e30199c9724329e71f375874eb76d554 (diff) | |
download | gitlab-ce-473b261261ab89fb921d12f05926ad9e9de5faee.tar.gz |
Back dating of issues when creating throught the API
Diffstat (limited to 'spec')
-rw-r--r-- | spec/requests/api/issues_spec.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/requests/api/issues_spec.rb b/spec/requests/api/issues_spec.rb index ce55cb7b0ae..822d3ad3017 100644 --- a/spec/requests/api/issues_spec.rb +++ b/spec/requests/api/issues_spec.rb @@ -318,6 +318,17 @@ describe API::API, api: true do 'is too long (maximum is 255 characters)' ]) end + + context 'when an admin or owner makes the request' do + it "accepts the creation date to be set" do + post api("/projects/#{project.id}/issues", user), + title: 'new issue', labels: 'label, label2', created_at: 2.weeks.ago + + expect(response.status).to eq(201) + # this take about a second, so probably not equal + expect(Time.parse(json_response['created_at'])).to be <= 2.weeks.ago + end + end end describe 'POST /projects/:id/issues with spam filtering' do |