Example #1
0
        public void ListAuthors_ShouldReturnListOfAuthorsWithoutPosts()
        {
            var response = butterClient.ListAuthors();

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