Skip to content

Commit

Permalink
Add specs to pass tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bwatters-r7 committed Feb 12, 2025
1 parent a2896f0 commit 7ff33b4
Showing 1 changed file with 169 additions and 0 deletions.
169 changes: 169 additions & 0 deletions spec/modules/payloads_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,175 @@
reference_name: 'cmd/linux/tftp/x64'
end

context 'cmd/linux/http/aarch64' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/http/aarch64'
],
reference_name: 'cmd/linux/http/aarch64'
end

context 'cmd/linux/https/aarch64' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/https/aarch64'
],
reference_name: 'cmd/linux/https/aarch64'
end

context 'cmd/linux/tftp/aarch64' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/tftp/aarch64'
],
reference_name: 'cmd/linux/tftp/aarch64'
end


context 'cmd/linux/http/armbe' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/http/armbe'
],
reference_name: 'cmd/linux/http/armbe'
end

context 'cmd/linux/https/armbe' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/https/armbe'
],
reference_name: 'cmd/linux/https/armbe'
end

context 'cmd/linux/tftp/armbe' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/tftp/armbe'
],
reference_name: 'cmd/linux/tftp/armbe'
end

context 'cmd/linux/http/armle' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/http/armle'
],
reference_name: 'cmd/linux/http/armle'
end

context 'cmd/linux/https/armle' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/https/armle'
],
reference_name: 'cmd/linux/https/armle'
end

context 'cmd/linux/tftp/armle' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/tftp/armle'
],
reference_name: 'cmd/linux/tftp/armle'
end

context 'cmd/linux/http/mipsbe' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/http/mipsbe'
],
reference_name: 'cmd/linux/http/mipsbe'
end

context 'cmd/linux/https/mipsbe' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/https/mipsbe'
],
reference_name: 'cmd/linux/https/mipsbe'
end

context 'cmd/linux/tftp/mipsbe' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/tftp/mipsbe'
],
reference_name: 'cmd/linux/tftp/mipsbe'
end

context 'cmd/linux/http/mipsle' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/http/mipsle'
],
reference_name: 'cmd/linux/http/mipsle'
end

context 'cmd/linux/https/mipsle' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/https/mipsle'
],
reference_name: 'cmd/linux/https/mipsle'
end

context 'cmd/linux/tftp/mipsle' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/tftp/mipsle'
],
reference_name: 'cmd/linux/tftp/mipsle'
end

context 'cmd/linux/http/ppc' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/http/ppc'
],
reference_name: 'cmd/linux/http/ppc'
end

context 'cmd/linux/https/ppc' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/https/ppc'
],
reference_name: 'cmd/linux/https/ppc'
end

context 'cmd/linux/tftp/ppc' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/tftp/ppc'
],
reference_name: 'cmd/linux/tftp/ppc'
end

context 'cmd/linux/http/ppc64' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/http/ppc64'
],
reference_name: 'cmd/linux/http/ppc64'
end

context 'cmd/linux/https/ppc64' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/https/ppc64'
],
reference_name: 'cmd/linux/https/ppc64'
end

context 'cmd/linux/tftp/ppc64' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
'adapters/cmd/linux/tftp/ppc64'
],
reference_name: 'cmd/linux/tftp/ppc64'
end

context 'cmd/linux/http/x86' do
it_should_behave_like 'payload is not cached',
ancestor_reference_names: [
Expand Down

0 comments on commit 7ff33b4

Please sign in to comment.