Skip to content
Snippets Groups Projects
Commit 4b43126d authored by Sean McGivern's avatar Sean McGivern
Browse files

Merge branch 'fix-ruby21-milestone-api-specs' into 'master'

Fix milestone API specs in Ruby 2.1

See merge request !8555
parents 5c7a0774 5639c1a3
Branches
Tags
1 merge request!8555Fix milestone API specs in Ruby 2.1
Pipeline #
Loading
@@ -50,6 +50,8 @@ describe API::Issues, api: true do
Loading
@@ -50,6 +50,8 @@ describe API::Issues, api: true do
end end
let!(:note) { create(:note_on_issue, author: user, project: project, noteable: issue) } let!(:note) { create(:note_on_issue, author: user, project: project, noteable: issue) }
   
let(:no_milestone_title) { URI.escape(Milestone::None.title) }
before do before do
project.team << [user, :reporter] project.team << [user, :reporter]
project.team << [guest, :guest] project.team << [guest, :guest]
Loading
@@ -174,7 +176,7 @@ describe API::Issues, api: true do
Loading
@@ -174,7 +176,7 @@ describe API::Issues, api: true do
end end
   
it 'returns an array of issues with no milestone' do it 'returns an array of issues with no milestone' do
get api("/issues?milestone=#{Milestone::None.title}", author) get api("/issues?milestone=#{no_milestone_title}", author)
   
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(json_response).to be_an Array expect(json_response).to be_an Array
Loading
@@ -365,7 +367,7 @@ describe API::Issues, api: true do
Loading
@@ -365,7 +367,7 @@ describe API::Issues, api: true do
end end
   
it 'returns an array of issues with no milestone' do it 'returns an array of issues with no milestone' do
get api("#{base_url}?milestone=#{Milestone::None.title}", user) get api("#{base_url}?milestone=#{no_milestone_title}", user)
   
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(json_response).to be_an Array expect(json_response).to be_an Array
Loading
@@ -537,7 +539,7 @@ describe API::Issues, api: true do
Loading
@@ -537,7 +539,7 @@ describe API::Issues, api: true do
end end
   
it 'returns an array of issues with no milestone' do it 'returns an array of issues with no milestone' do
get api("#{base_url}/issues?milestone=#{Milestone::None.title}", user) get api("#{base_url}/issues?milestone=#{no_milestone_title}", user)
   
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(json_response).to be_an Array expect(json_response).to be_an Array
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment