We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f97a7 commit 2fcf4b1Copy full SHA for 2fcf4b1
Formula/x/xeol.rb
@@ -33,7 +33,13 @@ def install
33
test do
34
assert_match version.to_s, shell_output("#{bin}/xeol version")
35
36
- output = shell_output("#{bin}/xeol alpine:latest")
+ output = shell_output("#{bin}/xeol db delete 2>&1")
37
+ assert_match "EOL database deleted", output
38
+
39
+ output = shell_output("#{bin}/xeol db update 2>&1")
40
+ assert_match "EOL database updated to latest version", output
41
42
+ output = shell_output("#{bin}/xeol alpine:latest 2>&1")
43
assert_match "no EOL software has been found", output
44
end
45
0 commit comments