public void UpsertQuestionReturnsEmptyModel()
        {
            var result = pollController.UpsertQuestion(string.Empty) as PartialViewResult;

            result.Should().BeOfType(typeof(PartialViewResult));
        }