Learning Ruby Through Rails is fun! Here is Part 2
blog
How To Load Data From Seed & Rake Tasks
CircleCI generates its own database.yml for every build. It then creates the database using the newly created database.yml file and loads the schema. It sets the environment to 'test' and runs the test cases. I needed some data that was loaded using seed and a rake task. This data was preserved from truncation between test … Continue reading How To Load Data From Seed & Rake Tasks
Pro Tips For Writing Better RSpec Tests
Writing 'good code' is always a challenge for every project. Unfortunately, we always associate it with development and not tests. What about automation test code? Ever notice that you have write more automation code than the actual lines of development code? Here are a few guidelines that I learned from my experience
