CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/spec/lib/rex/proto/proxy/socks5/server_spec.rb
Views: 1904
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