Skip to content

Commit 1d3bbcb

Browse files
committed
Add specs to pass tests
1 parent cf5f518 commit 1d3bbcb

File tree

1 file changed

+169
-0
lines changed

1 file changed

+169
-0
lines changed

spec/modules/payloads_spec.rb

Lines changed: 169 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,175 @@
556556
reference_name: 'cmd/linux/tftp/x64'
557557
end
558558

559+
context 'cmd/linux/http/aarch64' do
560+
it_should_behave_like 'payload is not cached',
561+
ancestor_reference_names: [
562+
'adapters/cmd/linux/http/aarch64'
563+
],
564+
reference_name: 'cmd/linux/http/aarch64'
565+
end
566+
567+
context 'cmd/linux/https/aarch64' do
568+
it_should_behave_like 'payload is not cached',
569+
ancestor_reference_names: [
570+
'adapters/cmd/linux/https/aarch64'
571+
],
572+
reference_name: 'cmd/linux/https/aarch64'
573+
end
574+
575+
context 'cmd/linux/tftp/aarch64' do
576+
it_should_behave_like 'payload is not cached',
577+
ancestor_reference_names: [
578+
'adapters/cmd/linux/tftp/aarch64'
579+
],
580+
reference_name: 'cmd/linux/tftp/aarch64'
581+
end
582+
583+
584+
context 'cmd/linux/http/armbe' do
585+
it_should_behave_like 'payload is not cached',
586+
ancestor_reference_names: [
587+
'adapters/cmd/linux/http/armbe'
588+
],
589+
reference_name: 'cmd/linux/http/armbe'
590+
end
591+
592+
context 'cmd/linux/https/armbe' do
593+
it_should_behave_like 'payload is not cached',
594+
ancestor_reference_names: [
595+
'adapters/cmd/linux/https/armbe'
596+
],
597+
reference_name: 'cmd/linux/https/armbe'
598+
end
599+
600+
context 'cmd/linux/tftp/armbe' do
601+
it_should_behave_like 'payload is not cached',
602+
ancestor_reference_names: [
603+
'adapters/cmd/linux/tftp/armbe'
604+
],
605+
reference_name: 'cmd/linux/tftp/armbe'
606+
end
607+
608+
context 'cmd/linux/http/armle' do
609+
it_should_behave_like 'payload is not cached',
610+
ancestor_reference_names: [
611+
'adapters/cmd/linux/http/armle'
612+
],
613+
reference_name: 'cmd/linux/http/armle'
614+
end
615+
616+
context 'cmd/linux/https/armle' do
617+
it_should_behave_like 'payload is not cached',
618+
ancestor_reference_names: [
619+
'adapters/cmd/linux/https/armle'
620+
],
621+
reference_name: 'cmd/linux/https/armle'
622+
end
623+
624+
context 'cmd/linux/tftp/armle' do
625+
it_should_behave_like 'payload is not cached',
626+
ancestor_reference_names: [
627+
'adapters/cmd/linux/tftp/armle'
628+
],
629+
reference_name: 'cmd/linux/tftp/armle'
630+
end
631+
632+
context 'cmd/linux/http/mipsbe' do
633+
it_should_behave_like 'payload is not cached',
634+
ancestor_reference_names: [
635+
'adapters/cmd/linux/http/mipsbe'
636+
],
637+
reference_name: 'cmd/linux/http/mipsbe'
638+
end
639+
640+
context 'cmd/linux/https/mipsbe' do
641+
it_should_behave_like 'payload is not cached',
642+
ancestor_reference_names: [
643+
'adapters/cmd/linux/https/mipsbe'
644+
],
645+
reference_name: 'cmd/linux/https/mipsbe'
646+
end
647+
648+
context 'cmd/linux/tftp/mipsbe' do
649+
it_should_behave_like 'payload is not cached',
650+
ancestor_reference_names: [
651+
'adapters/cmd/linux/tftp/mipsbe'
652+
],
653+
reference_name: 'cmd/linux/tftp/mipsbe'
654+
end
655+
656+
context 'cmd/linux/http/mipsle' do
657+
it_should_behave_like 'payload is not cached',
658+
ancestor_reference_names: [
659+
'adapters/cmd/linux/http/mipsle'
660+
],
661+
reference_name: 'cmd/linux/http/mipsle'
662+
end
663+
664+
context 'cmd/linux/https/mipsle' do
665+
it_should_behave_like 'payload is not cached',
666+
ancestor_reference_names: [
667+
'adapters/cmd/linux/https/mipsle'
668+
],
669+
reference_name: 'cmd/linux/https/mipsle'
670+
end
671+
672+
context 'cmd/linux/tftp/mipsle' do
673+
it_should_behave_like 'payload is not cached',
674+
ancestor_reference_names: [
675+
'adapters/cmd/linux/tftp/mipsle'
676+
],
677+
reference_name: 'cmd/linux/tftp/mipsle'
678+
end
679+
680+
context 'cmd/linux/http/ppc' do
681+
it_should_behave_like 'payload is not cached',
682+
ancestor_reference_names: [
683+
'adapters/cmd/linux/http/ppc'
684+
],
685+
reference_name: 'cmd/linux/http/ppc'
686+
end
687+
688+
context 'cmd/linux/https/ppc' do
689+
it_should_behave_like 'payload is not cached',
690+
ancestor_reference_names: [
691+
'adapters/cmd/linux/https/ppc'
692+
],
693+
reference_name: 'cmd/linux/https/ppc'
694+
end
695+
696+
context 'cmd/linux/tftp/ppc' do
697+
it_should_behave_like 'payload is not cached',
698+
ancestor_reference_names: [
699+
'adapters/cmd/linux/tftp/ppc'
700+
],
701+
reference_name: 'cmd/linux/tftp/ppc'
702+
end
703+
704+
context 'cmd/linux/http/ppc64' do
705+
it_should_behave_like 'payload is not cached',
706+
ancestor_reference_names: [
707+
'adapters/cmd/linux/http/ppc64'
708+
],
709+
reference_name: 'cmd/linux/http/ppc64'
710+
end
711+
712+
context 'cmd/linux/https/ppc64' do
713+
it_should_behave_like 'payload is not cached',
714+
ancestor_reference_names: [
715+
'adapters/cmd/linux/https/ppc64'
716+
],
717+
reference_name: 'cmd/linux/https/ppc64'
718+
end
719+
720+
context 'cmd/linux/tftp/ppc64' do
721+
it_should_behave_like 'payload is not cached',
722+
ancestor_reference_names: [
723+
'adapters/cmd/linux/tftp/ppc64'
724+
],
725+
reference_name: 'cmd/linux/tftp/ppc64'
726+
end
727+
559728
context 'cmd/linux/http/x86' do
560729
it_should_behave_like 'payload is not cached',
561730
ancestor_reference_names: [

0 commit comments

Comments
 (0)