Motivation
Discover the reasons behind common failures in large Rails applications such as coupling, size, and readability challenges. Learn how adopting a testing mindset and using a test-first approach helps maintain code quality, manage complexity, and build confidence in your Rails projects.
We'll cover the following...
Programming is both an art and a science. It’s an art because we use creative thinking to assemble the pieces of a program, making it bigger and more complex.
There are many ways to build applications, but we need to ensure that they remain easy to change and maintain as they keep growing.
We don’t want to worry that changes might take our whole application down. We need confidence that the code we ship is bug-free.
That type of confidence has everything to do with testing and ...