summaryrefslogtreecommitdiff
path: root/tests/webapp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tests/webapp.rb')
-rw-r--r--tests/webapp.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/webapp.rb b/tests/webapp.rb
new file mode 100644
index 00000000..1762de9e
--- /dev/null
+++ b/tests/webapp.rb
@@ -0,0 +1,13 @@
+raise SkipTest unless $node["services"].include?("webapp")
+
+class TestAWebapp < LeapTest
+ depends_on "TestNetwork"
+
+ def setup
+ end
+
+ def test_test
+ assert false, 'hey, stop here'
+ end
+
+end