require 'spec_helper' require 'ronin/exploits/cli/ruby_shell' describe Ronin::Exploits::CLI::RubyShell do describe "#initialize" do it "must default #name to 'ronin-exploits'" do expect(subject.name).to eq('ronin-exploits') end it "must default #context to Ronin::Exploits" do expect(subject.context).to be(Ronin::Exploits) end end end