Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.
/ gcr Public archive

A VCR-like test helper for Ruby GRPC clients

License

Notifications You must be signed in to change notification settings

btoews/gcr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GCR

A VCR-like test helper for GRPC clients.

Example

# in some test initializer
GCR.cassette_dir = Rails.root.join("test/fixtures/my_grpc_service")
GCR.stub = MyGRPCServer.stub
# in your test code
test "MyController#index works" do
  GCR.with_cassette("some cassette name") do
    MyGRPCServer.do_something
  end
end

Tests

To run tests:

bundle exec rake