The problem here is that $() is a function that returns an object with the method val(). So you have to stub $() to return an stubed object having the method val.
$ = sinon.stub();
$.withArgs('#category').returns(sinon.stub({val: function(){}}));
But the main mistake here is to let your code you wanna test calling the function $() to create new instances. Why? Its best practice to create no new instances in your class but to pass them into the constructor. Lets say you have function that will get a value out of a input double it and write it back to another:
function doubleIt(){
$('#el2').val(('#el1').val() *2);
}
In this case you create 2 new objects by calling $(). Now you have to stub $() to return a mock and a stub. Using the next example you can avoid this:
function doubleIt(el1, el2){
el2.val(el1.val() *2);
}
While in the first case you have to stub $ to return a stub, in the second case you can easily pass a stub and a spy into your function.
So the sinon test for the second one would look like this:
var el1 = sinon.stub({val: function(){}});
el1.returns(2);
var el2 = sinon.spy({val: function(){}}, 'val')
doubleIt(el1, el2)
assert(el.withArgs(4).calledOnce)
So you as you have no dom elements here you can simply test your application logic with no needs to create the same dom as in your app.
$is an object in fact (functions are objects in JavaScript). Apart from that, jQuery functions do work when nothing is selected -.val()will just returnundefined. – pimvdb Dec 15 '11 at 17:17.val()will returnundefined, but how can I then stub that to test my=== ''? – swilliams Dec 15 '11 at 17:35