Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@searls
Created April 28, 2011 16:32
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save searls/946704 to your computer and use it in GitHub Desktop.
Save searls/946704 to your computer and use it in GitHub Desktop.
A simple Jasmine Ajax spying example
window.context = window.describe
describe ".googlePandaStatus", ->
Given -> @ajaxCaptor = jasmine.captor()
Given -> spyOn($, "get")
When -> googlePandaStatus("Happy")
And -> expect($.get).toHaveBeenCalledWith("http://google.com", @ajaxCaptor.capture())
describe "~ the AJAX success handler", ->
Given -> spyOn(window, "printMessage")
context "a Chinese panda", ->
When -> @ajaxCaptor.value("Chinese")
Then -> expect(printMessage).toHaveBeenCalledWith("Happy Chinese Panda")
context "a Columbus Zoo panda", ->
When -> @ajaxCaptor.value("Columbus Zoo")
Then -> expect(printMessage).toHaveBeenCalledWith("Happy Columbus Zoo Panda")
// Production Source
var googlePandaStatus = function(disposition) {
var aClosureScopedVar = 'Panda';
$.get('http://google.com',function(data) {
printMessage(disposition+' '+data+' '+aClosureScopedVar);
});
};
var printMessage = function() { /* imagine some terribly complex unrelated component that prints messages*/ }
@branchgabriel
Copy link

What if your function arg we are capturing has multiple args?
Is there a way to add an array of values for the captured callback? The singular arg only approach only makes this useful some of the time.

When rendering templates with template engines like dust for example. I want to use my captor on the render call. The callback requires err and out arguments. Setting the value of the captor seems like it can't deal with multiple args. I have tried myCaptor.value([arg1, arg2]) but it doesn't seem to work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment