2005-12-17 06:46:23 +00:00
|
|
|
#!/usr/bin/env ruby
|
2005-07-25 09:34:53 +00:00
|
|
|
|
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', '..', '..'))
|
|
|
|
|
2005-12-13 06:08:40 +00:00
|
|
|
require 'rex/test'
|
2005-07-25 09:34:53 +00:00
|
|
|
require 'rex/proto/dcerpc/response'
|
|
|
|
|
|
|
|
class Rex::Proto::DCERPC::Response::UnitTest < Test::Unit::TestCase
|
|
|
|
|
2005-11-30 19:42:19 +00:00
|
|
|
Klass = Rex::Proto::DCERPC::Response
|
2005-07-25 09:34:53 +00:00
|
|
|
|
|
|
|
def test_parse
|
|
|
|
|
|
|
|
end
|
2008-10-19 21:03:39 +00:00
|
|
|
end
|