spec/unit/dispatcher_spec.rb in restfulness-0.3.2 vs spec/unit/dispatcher_spec.rb in restfulness-0.3.3

- old
+ new

@@ -4,10 +4,10 @@ describe Restfulness::Dispatcher do describe "#initialize" do it "should assign app variable" do obj = Restfulness::Dispatcher.new(:foo) - obj.app.should eql(:foo) + expect(obj.app).to eql(:foo) end end end