1# -*- coding:binary -*- 2 3RSpec.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 16end 17 18