Example #1
0
        public async Task UpdateAsync_ShouldWorkProperly_WithRegularDatas()
        {
            var shortDescription = "Another short description";
            var title            = "[Solved] Another Blog Post";
            var slug             = "another-short-blog-post";

            await blogPostAdminAppService.UpdateAsync(cmsKitTestData.BlogPost_2_Id, new CreateUpdateBlogPostDto
            {
                BlogId           = cmsKitTestData.Blog_Id,
                ShortDescription = shortDescription,
                Title            = title,
                Slug             = slug,
            });

            var blogPost = await blogPostRepository.GetAsync(cmsKitTestData.BlogPost_2_Id);

            blogPost.Title.ShouldBe(title);
            blogPost.ShortDescription.ShouldBe(shortDescription);
            blogPost.Slug.ShouldBe(slug);
        }
Example #2
0
 public virtual Task <BlogPostDto> UpdateAsync(Guid id, UpdateBlogPostDto input)
 {
     return(BlogPostAdminAppService.UpdateAsync(id, input));
 }