diff options
author | Fumiaki MATSUSHIMA <mtsmfm@gmail.com> | 2017-04-02 19:06:58 +0900 |
---|---|---|
committer | Fumiaki MATSUSHIMA <mtsmfm@gmail.com> | 2017-04-02 21:11:54 +0900 |
commit | 4c94d3e0a09151a84c5bc1eb044b082e2b07993f (patch) | |
tree | 23f67c36ccdc9cd6053305a72b394fd5e2c81b2d /activerecord/lib/active_record/persistence.rb | |
parent | 19ae6597b844e11842971c4f9298d5fc7014704d (diff) | |
download | rails-4c94d3e0a09151a84c5bc1eb044b082e2b07993f.tar.gz rails-4c94d3e0a09151a84c5bc1eb044b082e2b07993f.tar.bz2 rails-4c94d3e0a09151a84c5bc1eb044b082e2b07993f.zip |
Set `Capybara.app_host` through `host!`
`visit "/"` will visit always "http://127.0.0.1" even when we call `host!`:
```ruby
class SomeTest < ApplicationSystemTest
def setup
host! "http://example.com"
end
def test_visit
visit root_url # => visit "http://example.com/"
visit "/" # => visit "http://127.0.0.1/"
end
end
```
Because Capybara assumes that host is same as the server if we don't set `Capybara.app_host`:
https://github.com/teamcapybara/capybara/blob/866c975076f92b5d064ee8998be638dd213f0724/lib/capybara/session.rb#L239
Diffstat (limited to 'activerecord/lib/active_record/persistence.rb')
0 files changed, 0 insertions, 0 deletions