summaryrefslogtreecommitdiffstats
path: root/tests/run_tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run_tests')
-rwxr-xr-xtests/run_tests13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/run_tests b/tests/run_tests
deleted file mode 100755
index 1ae6c42..0000000
--- a/tests/run_tests
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-export RUBYLIB=${RUBYLIB:-../plugins}
-OPTIONS="$*"
-OPTIONS="${OPTIONS:---trace}"
-
-find -iname \*.pp | sort | while read current; do
- echo "Running $current"
- puppet $OPTIONS $current
- echo "Running $current again"
- puppet $OPTIONS $current
- echo
-done