Using VCR to Mock Your Requests

This page summarizes the projects mentioned and recommended in the original post on dev.to

WorkOS - The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • vcr

    Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.

  • Part of this task, as software developer, is making sure the code I write is well tested, and does what is supposed to do. But, when integrating our code connection, we don't want to hit APIs with real requests every time we run our tests. This not only generates unnecessary requests, but as well, make them run slower. In order to pretend that we are making the real request, there is a tool that helps "faking" this call, while using accurate data from a true request, and recording it as a "cassete tape". The name of the tool I refer to is VCR.

  • site-search-ruby

    Elastic Site Search Official Ruby Client

  • One example of project that uses VCR is this site-search-ruby client from elastic: https://github.com/elastic/site-search-ruby

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Spring: Rails Application Preloader

    1 project | news.ycombinator.com | 25 Apr 2024
  • About time: how to unit test code that depends on time

    3 projects | news.ycombinator.com | 19 Dec 2023
  • Creating integration tests for a backend legacy codebase

    2 projects | dev.to | 11 Apr 2023
  • I isolated the entire codebase from external data sources and made a generator of automated tests

    2 projects | /r/ExperiencedDevs | 6 Apr 2023
  • When to mock and what to mock in a Web API?

    3 projects | /r/golang | 23 Mar 2023