Как я могу написать тест для проверки пути в форме?
Я пытаюсь это сделать:
it "has a proper form path given subdomains" do
@event = Factory :event
get events_path(@event), nil, {'HTTP_HOST' => 'staging.example.com' }
page.should have_selector "form", :action => "secure.staging.example.com"
end
Но не похоже, что мой тест работает:
Failure/Error: page.should have_selector "form", :action => "secure.staging.example.com"
expected css "form" to return something
# ./spec/requests/events_spec.rb:18:in `block (3 levels) in <top (required)>'