Rails 5 API testing with RSpec

Useful links required to learn testing Rails APIs with RSpec

Gems I prefer while testing Rails API with RSpec

 gem 'rspec-rails'
 gem 'factory_bot_rails'
 gem 'database_cleaner'
 gem 'faker' # OR ffaker
 gem 'shoulda-matchers' 

Reference Docs

RSpec Doc factory_bot cheat sheet factory_bot document jwt site Rails Rspec APIs Testing Notes Rails API Testing Best Practices Setting up Rspec and Factory Bot RSpec with API Testing Tutorial 1 Tutorial 2 Tutorial 3 Tutorial 4 Auhtenticating API using JWT

Last updated