spec/praxis/route_spec.rb in praxis-2.0.pre.5 vs spec/praxis/route_spec.rb in praxis-2.0.pre.6

- old
+ new

@@ -3,35 +3,28 @@ describe Praxis::Route do let(:verb) { 'GET' } let(:path) { '/base/stuff' } let(:prefixed_path) { '/stuff' } - let(:name) { nil } let(:version) { '1.0' } let(:options) { {} } - subject(:route) { Praxis::Route.new(verb, path, version, name: name, prefixed_path: prefixed_path, **options) } + subject(:route) { Praxis::Route.new(verb, path, version, prefixed_path: prefixed_path, **options) } its(:verb) { should be(verb) } its(:path) { should be(path) } - its(:name) { should be(name) } its(:version) { should be(version) } its(:prefixed_path) { should eq(prefixed_path) } its(:options) { should eq(options) } it 'defaults version to "n/a"' do - route = Praxis::Route.new(verb, path, name: name, **options) + route = Praxis::Route.new(verb, path, **options) expect(route.version).to eq('n/a') end context '#describe' do subject(:description) { route.describe } it { should eq({verb:verb, path:path , version:version}) } - - context 'with a named route' do - let(:name) { :stuff } - its([:name]) { should eq(name) } - end context 'with options' do let(:options) { {option: 'value'} } its([:options]) { should eq(options) } end