Why Fixtures are a Pain?
Let's learn about the disadvantages of fixtures'.
We'll cover the following...
As great as fixtures are when we’re starting, using them long-term on complex projects exposes problems. Here are some things to keep an eye on.
Fixtures are global
There is only one set of fixtures in a default Rails application, so the temptation to add new data points to the fixture set every time we need a corner case is overwhelming. The problem is that every time we add a ...