From dfaada43ad8440a3a38fdd16abe2eaa358e745d6 Mon Sep 17 00:00:00 2001 From: Kevin Clark Date: Wed, 18 Jun 2008 01:06:01 +0000 Subject: [PATCH] Spec out ProtocolException git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668945 13f79535-47bb-0310-9956-ffa450edef68 --- lib/rb/spec/exception_spec.rb | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- 2.17.1