A user can import data into our website from a file.
The data normally contains several hundred Items (Item < ActiveRecord::Base).
Although the validations help, they cannot solve the problem of sanity-checking the content.
For that we would like to have a test mode.
Could we use a temporary Items table for this with Rails/MySQL, and, if yes, how should we do it?
You can use AR Extensions gem for this. Read this article for more details.
OR