diff --git a/spec/tools/egghunter_spec.rb b/spec/tools/egghunter_spec.rb index 08047ffbc0..9b49e8c566 100644 --- a/spec/tools/egghunter_spec.rb +++ b/spec/tools/egghunter_spec.rb @@ -4,11 +4,32 @@ require 'rex/proto/http/response' require 'stringio' describe Egghunter do + subject do Egghunter::Driver.new end describe '#run' do - end + context 'when the platform is windows' do + it 'returns a windows egghunter' do + end + end + + context 'when the platform is linux' do + it 'returns a linux egghunter' do + end + end + + context 'when the output format is java' do + it 'returns java format egghunter' do + end + end + + context 'when the egg is WOOT' do + it 'includes W00TW00T in the egghunter' do + end + end + + end end \ No newline at end of file