Sha256: 5c44a1de136801637370185647265c526bfc7e5472f9b184a6ceec42224f969b
Contents?: true
Size: 587 Bytes
Versions: 2
Compression:
Stored size: 587 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Grape::API do describe '.recognize_path' do subject { Class.new(described_class) } it 'fetches endpoint by given path' do subject.get('/foo/:id') {} subject.get('/bar/:id') {} subject.get('/baz/:id') {} actual = subject.recognize_path('/bar/1234').routes[0].origin expect(actual).to eq('/bar/:id') end it 'returns nil if given path does not match with registered routes' do subject.get {} expect(subject.recognize_path('/bar/1234')).to be_nil end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
grape-1.6.2 | spec/grape/api/recognize_path_spec.rb |
grape-1.6.1 | spec/grape/api/recognize_path_spec.rb |