New stuff I added makes many of the rspec tests fail

I added some new fields to Person and new methods. That’s mostly it. I didn’t change the API of Person or anything like that, I just added new stuff, basically.

Also, I added new keys to config and a new background job.

And I didn’t touch the folder spec at all and there’s been no change in it.

However, after running “zeus rspec spec” tests I now have over 200 of the failing tests, out of 800+. In the beginning I remember only around 5 failed.

I have bizarre errors such as “Email {AAA} is already in use” and “nil has no method {NNN}”.

And also some of my new added methods show up in the tests as failed ones for some reason. How come they are called from the tests? rspec tests must not bbe aware of them.

How should I go about fixing the rspec tests? What’s the reason of the failure?