Exemplo n.º 1
0
        public void EditAlbum_NormalCase()
        {
            const string url  = "https://api.vk.com/method/video.editAlbum?album_id=521543&title=Новое название!!!&v=5.9&access_token=token";
            const string json =
                @"{
                    'response': 1
                  }";

            VideoCategory cat = GetMockedVideoCategory(url, json);

            bool result = cat.EditAlbum(521543, "Новое название!!!");

            result.ShouldBeTrue();
        }