Parent

Methods

Class/Module Index [+]

Quicksearch

Rex::ServiceManager::UnitTest

Constants

Klass

Public Instance Methods

test_svcm() click to toggle source
# File lib/rex/service_manager.rb.ut.rb, line 11
def test_svcm
        begin
                c = Klass
                s = c.start(Rex::Proto::Http::Server, 8090)
                assert_not_nil(s)
                t = c.start(Rex::Proto::Http::Server, 8090)
                assert_not_nil(t)
                assert_equal(s, t)
                z = c.start(Rex::Proto::Http::Server, 8091)
                assert_not_equal(t, z)
                assert_equal("HTTP Server", s.alias)
                assert_equal("HTTP Server 1", z.alias)
        ensure
                c.stop_by_alias(s.alias) if (s)
                c.stop_by_alias(z.alias) if (z)
                c.stop_by_alias(t.alias) if (t)
        end

end

[Validate]

Generated with the Darkfish Rdoc Generator 2.