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-14.6.5 spec/endpoint/for_url_spec.rb
lhs-14.6.4 spec/endpoint/for_url_spec.rb
lhs-14.6.3 spec/endpoint/for_url_spec.rb
lhs-14.6.2 spec/endpoint/for_url_spec.rb
lhs-14.6.1 spec/endpoint/for_url_spec.rb
lhs-14.6.0 spec/endpoint/for_url_spec.rb
lhs-14.5.0 spec/endpoint/for_url_spec.rb
lhs-14.4.0 spec/endpoint/for_url_spec.rb
lhs-14.3.4 spec/endpoint/for_url_spec.rb
lhs-14.3.3 spec/endpoint/for_url_spec.rb
lhs-14.3.2 spec/endpoint/for_url_spec.rb
lhs-14.3.1 spec/endpoint/for_url_spec.rb
lhs-14.3.0 spec/endpoint/for_url_spec.rb
lhs-14.2.0 spec/endpoint/for_url_spec.rb
lhs-14.1.1 spec/endpoint/for_url_spec.rb
lhs-14.1.0 spec/endpoint/for_url_spec.rb
lhs-14.0.3 spec/endpoint/for_url_spec.rb
lhs-14.0.2 spec/endpoint/for_url_spec.rb
lhs-14.0.1 spec/endpoint/for_url_spec.rb
lhs-14.0.0 spec/endpoint/for_url_spec.rb