--
You received this message because you are subscribed to the Google Groups "Jasmine" group.
To post to this group, send email to jasmi...@googlegroups.com.
To unsubscribe from this group, send email to jasmine-js+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/jasmine-js?hl=en.
You can even demonstrate that it was returned:
var blah = function() {
return new google.maps.LatLng(123, 456);
}
var latLng = {};
spyOn(google.maps, 'LatLng').andReturn(latLng);
expect(blah()).toBe(latLng);
Peter