But you don't need .includes,
@test = Product.all
will work fine (though I would prefer @products =Product.all since
that is what they are).
If you inspect @test you will not see the prices, but as soon as you
ask for the prices it will fetch them. Such is the magic or Rails.
I am sure readers here are bored with me suggesting to beginners that
they work right through a good tutorial such as railstutorial.org,
which is free to use online, but it is definitely a good idea as it
would give you a good introduction to the basics of rails. Also look
through the Rails Guides.
For some reason I am rarely thanked for offering this advice.