use of io.pivotal.cla.webdriver.pages.ViewCclaPage in project pivotal-cla by pivotalsoftware.
the class CclaControllerTests method view.
@Test
@WithAnonymousUser
public void view() {
when(mockClaRepository.findByNameAndPrimaryTrue(cla.getName())).thenReturn(cla);
ViewCclaPage signPage = ViewCclaPage.go(getDriver(), cla.getName());
assertThat(signPage.getCorporate()).isEqualTo(cla.getCorporateContent().getHtml());
}
Aggregations