Exemple #1
0
        public async Task ListAuthorsAsync_ShouldReturnListOfAuthorsWithoutPosts()
        {
            var response = await butterClient.ListAuthorsAsync();

            Assert.IsNotNull(response);
            Assert.IsNull(response.FirstOrDefault().RecentPosts);
        }