~ubuntu-branches/ubuntu/vivid/node-cssom/vivid

1
2
3
4
5
6
7
8
9
10
function given(str, fn) {
    var args = [].slice.call(arguments, 0, -1);
    return jasmine.getEnv().it(str.toString(), function() {
        fn.apply(this, args);
    });
}

beforeEach(function() {
    this.addMatchers(objectDiff.jasmine);
});