}
@Test
public void notFoundLocallyCallsSource() throws Exception {
ViewRequest request = mockRequest(PATH, HttpMethod.GET);
HandlerContext context = mock(HandlerContext.class);
when(context.getRequest()).thenReturn(request);
// There's no matching local raw binary
when(store.getForPath(PATH)).thenReturn(Collections.<RawBinary>emptyList());
final ComponentEnvelope<RawComponent, RawAsset> mockComponent = mock(ComponentEnvelope.class);