when testing codes, only the fixtures data are stored in the test
database table after running the test and the model saved during
runing test method is not stored in the test database table? For
example:
#########
def test_save
user=User.new(...)
user.save
end
##########
After running the test method,the user is not stored in the test
database table?
right?