use of org.mamute.model.News in project mamute by caelum.
the class NewsTest method not_approved_news_should_be_visible_to_author.
@Test
public void not_approved_news_should_be_visible_to_author() {
News news = news("news title", "news description", author);
assertTrue(news.checkVisibilityFor(loggedUser(author)));
}
use of org.mamute.model.News in project mamute by caelum.
the class NewsTest method not_approved_news_should_not_be_visible_to_regular_user.
@Test(expected = NotFoundException.class)
public void not_approved_news_should_not_be_visible_to_regular_user() {
News news = news("news title", "news description", author);
news.checkVisibilityFor(loggedUser(regularUser));
}
Aggregations