You could eliminate any doubt with the pic by oscillating port b yourself,
and connecting an LED to any of the other port b pins, and changing the delay value.

Code:
buffer var byte = 0
TRISB = 0

cycle:

if buffer == $00 then
buffer = $FF
else
buffer = $00
endif
pauseus 1
PORTB = buffer

goto cycle