summaryrefslogtreecommitdiff
path: root/users/test/integration/api/rack_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'users/test/integration/api/rack_test.rb')
-rw-r--r--users/test/integration/api/rack_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/users/test/integration/api/rack_test.rb b/users/test/integration/api/rack_test.rb
new file mode 100644
index 0000000..da960f2
--- /dev/null
+++ b/users/test/integration/api/rack_test.rb
@@ -0,0 +1,12 @@
+CONFIG_RU = (Rails.root + 'config.ru').to_s
+OUTER_APP = Rack::Builder.parse_file(CONFIG_RU).first
+
+class RackTest < ActiveSupport::TestCase
+ include Rack::Test::Methods
+ include Warden::Test::Helpers
+ include LeapWebCore::AssertResponses
+
+ def app
+ OUTER_APP
+ end
+end