Rails 7 API Application
Play
24:57 CC

Rails 7 API Application

#396 Apr 9, 2023 pro
In this episode, we look at setting up a Rails 7 API (only) application and create our own authentication solution. We'll also write the tests around the different controller endpoints that we create to make sure that we have good test coverage and functionality.

Testing View Components
Play
9:51 CC

Testing View Components

#293 Apr 25, 2021 pro
View Components allow testing the rendered views much easier.

Minitest and Test Driven Development
Play
23:58 CC

Minitest and Test Driven Development

#221 Dec 22, 2019 pro
We continue from Episode 220 and add additional features and write tests for existing code. We look at introduced bugs and how test driven development can help to not only fix the bugs, but strengthen our test suite.

Continuous Integration with Travis CI
Play
10:39 CC

Continuous Integration with Travis CI

#105 Nov 12, 2017 pro
Using Continuous Integration, you can perform tasks and run your tests automatically whenever you commit your code. Travis CI offers free Continuous Integration for open source projects.

Speeding Up Tests
Play
4:54 CC

Speeding Up Tests

#104 Nov 5, 2017 free
Slow tests can slow down your development process. Using parallel_tests, you can speed up your test suite by multiple threads and running the tests in groups.