class WsdlMapperTesting::Test
Public Instance Methods
create_test_module(content)
click to toggle source
# File lib/wsdl_mapper_testing/test.rb, line 3 def create_test_module(content) test_module_name = 'TestModule' + SecureRandom.hex eval "module #{test_module_name}\n#{content}\nend" self.class.const_get test_module_name end