Sha256: a996e967ad2bfee25be345ce326c57e13f62b6074232f5b3a83f57849ed03a22

Contents?: true

Size: 823 Bytes

Versions: 127

Compression:

Stored size: 823 Bytes

Contents

require 'rails_helper'

describe LHS::Endpoint do
  context 'for url' do
    before(:each) do
      class Record < LHS::Record
        endpoint ':datastore/entries/:entry_id/content-ads/:campaign_id/feedbacks'
        endpoint ':datastore/:campaign_id/feedbacks'
        endpoint ':datastore/feedbacks'
      end
    end

    it 'provides the endpoint for a given url' do
      expect(
        LHS::Endpoint.for_url('http://local.ch/v2/entries/123/content-ads/456/feedbacks').url
      ).to eq ':datastore/entries/:entry_id/content-ads/:campaign_id/feedbacks'
      expect(
        LHS::Endpoint.for_url('http://local.ch/123/feedbacks').url
      ).to eq ':datastore/:campaign_id/feedbacks'
      expect(
        LHS::Endpoint.for_url('http://local.ch/feedbacks').url
      ).to eq ':datastore/feedbacks'
    end
  end
end

Version data entries

127 entries across 127 versions & 1 rubygems

Version Path
lhs-11.2.1 spec/endpoint/for_url_spec.rb
lhs-11.2.0 spec/endpoint/for_url_spec.rb
lhs-11.1.0 spec/endpoint/for_url_spec.rb
lhs-11.0.3 spec/endpoint/for_url_spec.rb
lhs-11.0.2 spec/endpoint/for_url_spec.rb
lhs-11.0.1 spec/endpoint/for_url_spec.rb
lhs-11.0.0 spec/endpoint/for_url_spec.rb
lhs-10.1.1 spec/endpoint/for_url_spec.rb
lhs-10.1.0 spec/endpoint/for_url_spec.rb
lhs-10.0.0 spec/endpoint/for_url_spec.rb
lhs-9.1.1 spec/endpoint/for_url_spec.rb
lhs-9.1.0 spec/endpoint/for_url_spec.rb
lhs-9.0.4 spec/endpoint/for_url_spec.rb
lhs-9.0.3 spec/endpoint/for_url_spec.rb
lhs-9.0.2 spec/endpoint/for_url_spec.rb
lhs-9.0.1 spec/endpoint/for_url_spec.rb
lhs-9.0.0 spec/endpoint/for_url_spec.rb
lhs-8.0.0 spec/endpoint/for_url_spec.rb
lhs-7.4.1 spec/endpoint/for_url_spec.rb
lhs-7.4.0 spec/endpoint/for_url_spec.rb