aboutsummaryrefslogtreecommitdiff
path: root/test/test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.rb')
-rwxr-xr-xtest/test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test.rb b/test/test.rb
new file mode 100755
index 0000000..3df8653
--- /dev/null
+++ b/test/test.rb
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+
+require 'sinatra'
+
+set :bind, '0.0.0.0'
+
+get '/' do
+ 'Put this in your pipe & smoke it!'
+end