blob: eb49d1ea22df19640429279c51bdddbb3a841f4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
require 'capybara/rails'
#
# RackStackTest
#
# Tests that will use the entire rack stack from capybara.
#
class RackStackTest < ActionDispatch::IntegrationTest
CONFIG_RU = (Rails.root + 'config.ru').to_s
OUTER_APP = Rack::Builder.parse_file(CONFIG_RU).first
# this is integration testing. So let's make the whole
# rack stack available...
Capybara.app = OUTER_APP
Capybara.run_server = true
Capybara.app_host = 'http://lvh.me:3003'
Capybara.server_port = 3003
# WARNING: this creates an error in the test as soon as there
# is an error in rails. Use the javascript driver for testing
# error rendering
Capybara.register_driver :rack_test do |app|
Capybara::RackTest::Driver.new(app)
end
require 'capybara/poltergeist'
Capybara.register_driver :poltergeist do |app|
Capybara::Poltergeist::Driver.new(app)
end
end
|