public void UpdateExistingList_ShouldReturnUpdatedList()
        {
            var listId   = "60981703c97b4a7aa03edd9f";
            var listName = "Exams preparation 2021";

            _trelloEndpoints.UpdateExistingList(listId, listName)
            .TestBody("name changed", x => x.id == listId && x.name == listName)
            .Assert("name changed");
        }
示例#2
0
 public void WhenTheFunctionToUpdateAreExecuted()
 {
     _responseContext = _trelloEndpoints.UpdateExistingList(ListId, ListName);
 }