Мой тест заголовка rspec не выполняется с:
1) HomeController Get 'index should have the right title
Failure/Error: response.should have_selector("title",
expected following output to contain a <title>TitleTest</title> tag:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
# ./spec/controllers/home_controller_spec.rb:13
Мой homecontroller имеет:
def index () @title = "TitleTest" end
my view (application.html.erb) имеет:
<title><%= @title %></title>
Запуск сервера rails показывает, что мой заголовок установлен, что здесь не так?