예제 #1
0
        public void TestDeleteTeaser()
        {
            var article = this.MakeSampleArticle();
            var teaser = new Teaser(article)
            {
                Preamble = "New teaser",
                ImageLink = "Text"
            };
            teaser.Create();
            int id = teaser.Id;

            teaser.Delete();
            teaser.Read(id);
        }