1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
require 'spec_helper'
describe JIRA::Resource::Priority do
with_each_client do |site_url, client|
let(:client) { client }
let(:site_url) { site_url }
let(:key) { '1' }
let(:expected_attributes) do
{
'self' => 'http://localhost:2990/jira/rest/api/2/priority/1',
'id' => key,
'name' => 'Blocker'
}
end
let(:expected_collection_length) { 5 }
it_should_behave_like 'a resource'
it_should_behave_like 'a resource with a collection GET endpoint'
it_should_behave_like 'a resource with a singular GET endpoint'
end
end
|