10 lines
152 B
Ruby
10 lines
152 B
Ruby
|
#!/usr/bin/ruby
|
||
|
|
||
|
require 'test/unit'
|
||
|
require 'msf/base'
|
||
|
|
||
|
class Msf::Sessions::CommandShell::UnitTest < Test::Unit::TestCase
|
||
|
def test_cmdshell
|
||
|
end
|
||
|
end
|