This is the first introduction to RSpec. Series Overview
First and foremost, once you write a test, you don't have to check the operation every time you rewrite the program, and you can reduce the risk of missing checks **. It takes a certain amount of man-hours to write a complete test, but reducing the total work time including bug fixing will be a considerable merit. Another thing is that you can ** guarantee the operation of the program ** by enhancing the automatic test. Just saying "I've verified it works!" Is not a guarantee, but the fact that the test was run and passed ensures that it works at least within the scope of the test.
・ ** Easy to read and write ** ・ ** You can write code efficiently if you master the library **
Recommended Posts