The important test cases I want to cover
parent
2fda115110
commit
470464874f
|
@ -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
|
Loading…
Reference in New Issue