1#!/usr/bin/ruby 2 3# generated_code.rb is in the same directory as this test. 4$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__))) 5 6require 'generated_code_pb' 7require 'test_import_pb' 8require 'test/unit' 9 10class GeneratedCodeTest < Test::Unit::TestCase 11 def test_generated_msg 12 # just test that we can instantiate the message. The purpose of this test 13 # is to ensure that the output of the code generator is valid Ruby and 14 # successfully creates message definitions and classes, not to test every 15 # aspect of the extension (basic.rb is for that). 16 m = A::B::C::TestMessage.new() 17 m2 = FooBar::TestImportedMessage.new() 18 end 19end 20