For any given test use the following:
use_cassette("foobar", {
aa <- hello::world()
expect_is(aa, "SomeClass")
expect_equal(length(aa), 3)
})
And the tests will behave as normally.
The first request will make a real HTTP request. Following requests
will pull from the cached responses on cassette.