Initial release

This commit is contained in:
2024-06-08 17:01:45 +02:00
commit 617f7959ab
10 changed files with 244 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# Chef InSpec test for recipe deno::default
# The Chef InSpec reference, with examples and extensive documentation, can be
# found at https://docs.chef.io/inspec/resources/
describe file('/usr/local/bin/deno') do
it { should exist }
its('mode') { should cmp '00755' }
end
describe bash('deno -v') do
its('stdout') { should match /deno 1\.44\.1/ }
its('stderr') { should eq '' }
its('exit_status') { should eq 0 }
end