From: Kevin Clark Date: Wed, 18 Jun 2008 01:06:01 +0000 (+0000) Subject: Spec out ProtocolException X-Git-Tag: 0.2.0~604 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=dfaada43ad8440a3a38fdd16abe2eaa358e745d6;p=common%2Fthrift.git Spec out ProtocolException git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668945 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/rb/spec/exception_spec.rb b/lib/rb/spec/exception_spec.rb index c437a63c..013f6126 100644 --- a/lib/rb/spec/exception_spec.rb +++ b/lib/rb/spec/exception_spec.rb @@ -112,4 +112,12 @@ class ThriftSpec < Spec::ExampleGroup e.write(prot) end end + + describe ProtocolException do + it "should have an accessible type" do + prot = ProtocolException.new(ProtocolException::SIZE_LIMIT, "message") + prot.type.should == ProtocolException::SIZE_LIMIT + prot.message.should == "message" + end + end end