Я следую за rails3tutorial, и я не понимаю смысла ключевого слова "it" при выполнении некоторых тестов следующим образом:
require 'spec_helper'
describe UsersController do
render_views
describe "GET 'new'" do
it "should be successful" do
get 'new'
response.should be_success
end
it "should have the right title" do
get 'new'
response.should have_selector("title", :content => "Sign up")
end
end
end
фрагмент кода происходит из: http://ruby.railstutorial.org/chapters/filling-in-the-layout#top, содержащего список 5.26