예제 #1
0
        public void GalleriesEditMetaTest()
        {
            string galleryId = "78188-72157622589312064";

            string title       = "Great Entrances to Hell";
            string description = "A guide to what makes a great photo for the Entrances to Hell group: " +
                                 "<a href=\"https://www.flickr.com/groups/entrancetohell\">www.flickr.com/groups/entrancetohell</a>\n\n";

            description += DateTime.Now.ToString();

            AuthInstance.GalleriesEditMeta(galleryId, title, description);

            Gallery gallery = AuthInstance.GalleriesGetInfo(galleryId);

            Assert.AreEqual(title, gallery.Title);
            Assert.AreEqual(description, gallery.Description);
        }