aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2013-05-25 21:36:43 +0100
committerMike McQuaid2013-05-25 21:36:43 +0100
commit052293f22cba6f45a6d983909ac9a01ca5df54b8 (patch)
treec391ba2ff68bfba731a4e1f5fd4f5cc6ea4c53b6 /Library
parentb1f00c57573bcb852f97cdbd863ba664635e9ab2 (diff)
downloadbrew-052293f22cba6f45a6d983909ac9a01ca5df54b8.tar.bz2
brew-test-bot: add missing xml.erb file.
Diffstat (limited to 'Library')
-rw-r--r--Library/Contributions/cmd/brew-test-bot.xml.erb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.xml.erb b/Library/Contributions/cmd/brew-test-bot.xml.erb
new file mode 100644
index 000000000..67ec1e38b
--- /dev/null
+++ b/Library/Contributions/cmd/brew-test-bot.xml.erb
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<testsuites name="brew-test-bot">
+ <% tests.each do |test| %>
+ <testsuite name="<%= test.name %>" tests="<%= test.steps.count %>">
+ <% test.steps.each do |step| %>
+ <testcase name="<%= step.name %>" status="<%= step.status %>">
+ <% unless step.status == :passed %>
+ <failure />
+ <% end %>
+ </testcase>
+ <% end %>
+ </testsuite>
+ <% end %>
+</testsuites>