I'm using factorygirl. I'm still new, in particular to the testing aspect of rails.
When I descibe POST create I can create any number of Person objects without any issue. I don't actually need to create one here as I normally just stub the valid? method of Person. But for the purpose of resolving this issue I threw it in there. Regardless of this Factory.create(:person) being in the POST create context (or how many times I use it there) it throws a non-descriptive error message when I use it in the PUT update context.
Additionally I have removed all validation from the model with no change in the result.
I'm at a loss.
Lets just get the basics working:
describe PeopleController do
describe "POST create" do
describe "with valid params" do
it "creates a person from params and renders persons/_form partial" do
f = Factory.create(:person)
# f = Factory.create(:person)
# f = Factory.create(:person)
end
end
end
describe "PUT update" do
describe "with valid params" do
it "updates the requested person" do
f = Factory.create(:person) #error when running rake spec
end
end
end
end
Error:
Failure/Error: f = Factory.create(:person)
ActiveRecord::RecordInvalid:
Validation failed:
Model
class Person < ActiveRecord::Base
end