metasploit-framework/spec/lib/rex/proto/proxy/socks5/server_spec.rb

17 lines
287 B
Ruby

# -*- coding:binary -*-
RSpec.describe Rex::Proto::Proxy::Socks5::Server do
subject(:server) do
Rex::Proto::Proxy::Socks5::Server.new
end
describe "#is_running?" do
it "should respond to #is_running?" do
expect(server.is_running?).to eq(false)
end
end
end