CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/spec/lib/rex/proto/proxy/socks5/server_spec.rb
Views: 11791
1
# -*- coding:binary -*-
2
3
RSpec.describe Rex::Proto::Proxy::Socks5::Server do
4
5
subject(:server) do
6
Rex::Proto::Proxy::Socks5::Server.new
7
end
8
9
describe "#is_running?" do
10
11
it "should respond to #is_running?" do
12
expect(server.is_running?).to eq(false)
13
end
14
15
end
16
end
17
18