mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
2960044415
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668904 13f79535-47bb-0310-9956-ffa450edef68
12 lines
259 B
Ruby
12 lines
259 B
Ruby
require File.join(File.dirname(__FILE__), '../test_helper')
|
|
|
|
require 'thrift/thrift'
|
|
|
|
class TestException < Test::Unit::TestCase
|
|
def test_has_accessible_message
|
|
msg = "hi there thrift"
|
|
assert_equal msg, Thrift::Exception.new(msg).message
|
|
end
|
|
end
|
|
|