public void Invoke_DeleteProductionChapters_Returns_Result()
        {
            HasAccessToken();
            IsDependentOn("Invoke_CreateProduction_Returns_Result");

            Production production = null;

            Assert.That(() => production = _auphonic.DeleteProductionChapters(_production.Uuid), Throws.Nothing);
            Assert.That(production, Is.Not.Null);
            Assert.That(production.Chapters.Count, Is.EqualTo(0), "Chapters");
        }