Sha256: 9bcaee39c36990838bdc2d22b4ff5ef6be5f948f37cb7a9905ac642b7398688b

Contents?: true

Size: 732 Bytes

Versions: 13

Compression:

Stored size: 732 Bytes

Contents

#!/usr/bin/ruby

# generated_code.rb is in the same directory as this test.
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__)))

require 'generated_code_pb'
require 'test_import_pb'
require 'test_ruby_package_pb'
require 'test/unit'

class GeneratedCodeTest < Test::Unit::TestCase
  def test_generated_msg
    # just test that we can instantiate the message. The purpose of this test
    # is to ensure that the output of the code generator is valid Ruby and
    # successfully creates message definitions and classes, not to test every
    # aspect of the extension (basic.rb is for that).
    m = A::B::C::TestMessage.new()
    m2 = FooBar::TestImportedMessage.new()
    m3 = A::B::TestRubyPackageMessage.new()
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
google-protobuf-z-3.5.1 tests/generated_code_test.rb
google-protobuf-3.6.1-x86-mingw32 tests/generated_code_test.rb
google-protobuf-3.6.1-x86-linux tests/generated_code_test.rb
google-protobuf-3.6.1-x86_64-linux tests/generated_code_test.rb
google-protobuf-3.6.1-x64-mingw32 tests/generated_code_test.rb
google-protobuf-3.6.1-universal-darwin tests/generated_code_test.rb
google-protobuf-3.6.1 tests/generated_code_test.rb
google-protobuf-3.6.0-x86-mingw32 tests/generated_code_test.rb
google-protobuf-3.6.0-x86-linux tests/generated_code_test.rb
google-protobuf-3.6.0-x86_64-linux tests/generated_code_test.rb
google-protobuf-3.6.0-x64-mingw32 tests/generated_code_test.rb
google-protobuf-3.6.0-universal-darwin tests/generated_code_test.rb
google-protobuf-3.6.0 tests/generated_code_test.rb