In the functional test that is created by Rails (when generating a model using scaffolding), there is a test that looks like this:
test "should create product" do
assert_difference('Product.count') do
post :create, ...
end
assert_redirected_to ...
end
My question is, what is actually evaluated by Product.count ?
Is it the number of rows in the products table?