Testing with RSpec
Play
13:04 CC

Testing with RSpec

#101 Oct 15, 2017 free
Using RSpec, learn how to create tests for your application and view your coverage.

Basic Testing Introduction in Rails
Play
13:29 CC

Basic Testing Introduction in Rails

#100 Oct 8, 2017 free
Using the Rails 5.1.X defaults, we have a look at what is configured and explore the different types of tests; using the provided MiniTest and Capybara.

Feature Testing with Capybara
Play
14:40 CC

Feature Testing with Capybara

#102 Oct 22, 2017 free
Create Acceptance Tests or Feature Tests to extend your automated tests with browser testing. It can help tests some areas that cannot be reached with other types of tests.

Sample Data with Factory Bot and Faker
Play
8:07 CC

Sample Data with Factory Bot and Faker

#103 Oct 29, 2017 free
Factory Bot is a fixtures replacement which can generate the needed records directly in the tests. Faker can be used to create fake data for these records.

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.