public void Update_Labels_For_The_Card()
        {
            Target.UpdateCardForEntity(Refresh);

            Card.Assert(c => c.UpdateLabels(Board.GetLabelsForCompany(Refresh.BlogPost.BlogCompanyName)), Occurs.Once());
        }
        public void Update_Labels_For_The_Card()
        {
            Target.EditCard(Post);

            Card.Assert(c => c.UpdateLabels(Board.GetLabelsForCompany(Post.BlogCompanyName)), Occurs.Once());
        }
        public void Set_Trello_Card_Labels_To_CompanyName()
        {
            Target.UpdateCardForEntity(Whitepaper);

            Card.Assert(c => c.UpdateLabels(Board.GetLabelsForCompany(Whitepaper.Blog.CompanyName)));
        }