Fake the Back-End to Get System Tests Passing
Learn how to get the system tests passed after faking the back-end in our Rails application.
We'll cover the following...
System test development challenges and strategies
System tests are hard to write in a pure test-driven style. We often need to start with a view that actually renders the way it’s intended and then write our test to assert behavior based on that. If we are also trying to make the back end work at the same ...