Sha256: 15b2ea7154e70d699b26753647e9c32f29a29f40f69d41f4602505a946fad0a1
Contents?: true
Size: 960 Bytes
Versions: 2
Compression:
Stored size: 960 Bytes
Contents
require "spec_helper" require "espago/router" class Espago::ApiConnection::StubbedRequestGet; end describe Espago::Router do subject { Espago::Router.new(:stubbed_request, :get) } it { subject.should respond_to :path} it { subject.should respond_to :method} context "#route" do it "should get a class name depending on path and method" do subject.route.should eq( Espago::ApiConnection::StubbedRequestGet ) end it "should raise error if class not found" do subject { Espago::Router.new(:not, :existing) } expect { subject.route.to raise_error( Espago::Router::NoPathError ) } end end context "#path_exists?" do it "should return if path exists" do subject.path_exists?.should be_true end context "with invalid path name" do subject { Espago::Router.new(:not, :existing) } it "should return false" do subject.path_exists?.should_not be_true end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
espago-0.1.8 | spec/espago/router_spec.rb |
espago-0.1.2 | spec/espago/router_spec.rb |