really interesting article about test dependencies...
# failgood
c
really interesting article about test dependencies: https://thoughtbot.com/blog/the-self-contained-test I always try to find a middle ground where I just put the “boring” dependencies into the context, and everything that is really needed is then done in the test. for example If I need a user object I will have a generic user instance in the test context, and then in each test i set the fields that really matter for that test via the copy function. Maybe something to blog about…