summaryrefslogtreecommitdiff
path: root/tests/webapp.rb
blob: 1762de9ea6f8c81fc0af5e043c74dfe3891015d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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