aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/tests
diff options
context:
space:
mode:
authorGravatar igorpeshansky <igorpeshansky@users.noreply.github.com>2018-06-19 16:26:41 -0400
committerGravatar Paul Yang <TeBoring@users.noreply.github.com>2018-06-19 13:26:41 -0700
commit944693c44c4cd2de8ed3516c2406c2c1fcec5cbb (patch)
treeb59599dd594f18a838c26d4e461c14b7bb7046e6 /ruby/tests
parent0c3db0269ba1157461fede1d1c52a620660fdf12 (diff)
Add Google::Protobuf::Any.pack convenience class method. (#4719)
Diffstat (limited to 'ruby/tests')
-rw-r--r--ruby/tests/well_known_types_test.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/ruby/tests/well_known_types_test.rb b/ruby/tests/well_known_types_test.rb
index bd24c328..240281e7 100644
--- a/ruby/tests/well_known_types_test.rb
+++ b/ruby/tests/well_known_types_test.rb
@@ -120,11 +120,17 @@ class TestWellKnownTypes < Test::Unit::TestCase
end
def test_any
- any = Google::Protobuf::Any.new
ts = Google::Protobuf::Timestamp.new(seconds: 12345, nanos: 6789)
+
+ any = Google::Protobuf::Any.new
any.pack(ts)
assert any.is(Google::Protobuf::Timestamp)
assert_equal ts, any.unpack(Google::Protobuf::Timestamp)
+
+ any = Google::Protobuf::Any.pack(ts)
+
+ assert any.is(Google::Protobuf::Timestamp)
+ assert_equal ts, any.unpack(Google::Protobuf::Timestamp)
end
end