public async Task Can_call_single_operation_in_pipeline()
        {
            Assert.That(await typedClient.GetValueAsync(Key), Is.Null);

            await using (var pipeline = typedClient.CreatePipeline())
            {
                pipeline.QueueCommand(r => r.SetValueAsync(Key, model));

                await pipeline.FlushAsync();
            }

            modelFactory.AssertIsEqual(await typedClient.GetValueAsync(Key), model);
        }