Sha256: 4a9cc900f959e9fd42bd54de523ae8c1c3e7a339c8fa5a881120059d4482182d
Contents?: true
Size: 1.17 KB
Versions: 12
Compression:
Stored size: 1.17 KB
Contents
require "pact_broker/api/decorators/label_decorator" module PactBroker module Api module Decorators describe LabelDecorator do let(:label) do TestDataBuilder.new .create_consumer("Consumer") .create_label("ios") .and_return(:label) end let(:options) { { user_options: { base_url: "http://example.org" } } } subject { JSON.parse LabelDecorator.new(label).to_json(options), symbolize_names: true } it "includes the label name" do expect(subject[:name]).to eq "ios" end it "includes a link to itself" do expect(subject[:_links][:self][:href]).to eq "http://example.org/pacticipants/Consumer/labels/ios" end it "includes the label name" do expect(subject[:_links][:self][:name]).to eq "ios" end it "includes a link to the pacticipant" do expect(subject[:_links][:pacticipant][:href]).to eq "http://example.org/pacticipants/Consumer" end it "includes the pacticipant name" do expect(subject[:_links][:pacticipant][:name]).to eq "Consumer" end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems