Sha256: 0d0a7b1357cf11fe82ff0c8427f23568c881a357af8fc9d9d113e371e8d1be04
Contents?: true
Size: 1.02 KB
Versions: 12
Compression:
Stored size: 1.02 KB
Contents
require "spec/support/test_data_builder" describe "Get versions" do let(:path) { "/pacticipants/Consumer/versions" } let(:last_response_body) { JSON.parse(subject.body, symbolize_names: true) } subject { get(path) } context "when the pacticipant exists" do before do TestDataBuilder.new .create_consumer("Consumer") .create_consumer_version("1.0.0") .create_consumer_version("1.0.1") end it "returns a 200 response" do expect(subject.status).to be 200 end it "returns a list of links to the versions" do expect(last_response_body[:_links][:"versions"].size).to eq 2 end context "with pagination options" do subject { get(path, { "pageSize" => "1", "pageNumber" => "1" }) } it "paginates the response" do expect(last_response_body[:_links][:"versions"].size).to eq 1 end end end context "when the pacticipant does not exist" do it "returns a 404 response" do expect(subject).to be_a_404_response end end end
Version data entries
12 entries across 12 versions & 1 rubygems