File: generated_code_test.rb

package info (click to toggle)
protobuf 3.12.4-1%2Bdeb11u1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 42,328 kB
  • sloc: cpp: 172,516; java: 93,320; objc: 60,903; ansic: 45,178; javascript: 29,813; cs: 24,146; python: 23,903; php: 11,352; ruby: 5,351; sh: 3,801; makefile: 3,419; xml: 2,532; pascal: 438; lisp: 92; awk: 17
file content (23 lines) | stat: -rwxr-xr-x 804 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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).
    A::B::C::TestMessage.new
    A::B::C::TestMessage::NestedMessage.new
    A::B::C::TestLowercaseNested::Lowercase.new
    FooBar::TestImportedMessage.new
    A::B::TestRubyPackageMessage.new
  end
end