Whitespace OCD

This commit is contained in:
Jan Pieter Waagmeester 2013-10-29 11:38:21 +01:00
parent a2b62b3bd2
commit 99bd248566

View File

@ -1,16 +1,16 @@
describe('Util', function() { describe('Util', function () {
describe('#extend', function() { describe('#extend', function () {
var a; var a;
beforeEach(function() { beforeEach(function () {
a = { a = {
foo: 5, foo: 5,
bar: 'asd' bar: 'asd'
}; };
}); });
it('extends the first argument with the properties of the second', function() { it('extends the first argument with the properties of the second', function () {
L.Util.extend(a, { L.Util.extend(a, {
bar: 7, bar: 7,
baz: 3 baz: 3
@ -23,7 +23,7 @@ describe('Util', function() {
}); });
}); });
it('accepts more than 2 arguments', function() { it('accepts more than 2 arguments', function () {
L.Util.extend(a, {bar: 7}, {baz: 3}); L.Util.extend(a, {bar: 7}, {baz: 3});
expect(a).to.eql({ expect(a).to.eql({
@ -34,9 +34,9 @@ describe('Util', function() {
}); });
}); });
describe('#bind', function() { describe('#bind', function () {
it('returns the given function with the given context', function() { it('returns the given function with the given context', function () {
var fn = function() { var fn = function () {
return this; return this;
}; };
@ -59,8 +59,8 @@ describe('Util', function() {
}); });
}); });
describe('#stamp', function() { describe('#stamp', function () {
it('sets a unique id on the given object and returns it', function() { it('sets a unique id on the given object and returns it', function () {
var a = {}, var a = {},
id = L.Util.stamp(a); id = L.Util.stamp(a);
@ -115,38 +115,37 @@ describe('Util', function() {
}); });
describe('#getParamString', function() { describe('#getParamString', function () {
it('creates a valid query string for appending depending on url input', function() { it('creates a valid query string for appending depending on url input', function () {
var a = { var a = {
url: "http://example.com/get", url: 'http://example.com/get',
obj: {bar: 7, baz: 3}, obj: {bar: 7, baz: 3},
result: "?bar=7&baz=3" result: '?bar=7&baz=3'
}; };
expect(L.Util.getParamString(a.obj,a.url)).to.eql(a.result); expect(L.Util.getParamString(a.obj, a.url)).to.eql(a.result);
var b = { var b = {
url: "http://example.com/get?justone=qs", url: 'http://example.com/get?justone=qs',
obj: {bar: 7, baz: 3}, obj: {bar: 7, baz: 3},
result: "&bar=7&baz=3" result: '&bar=7&baz=3'
}; };
expect(L.Util.getParamString(b.obj,b.url)).to.eql(b.result); expect(L.Util.getParamString(b.obj, b.url)).to.eql(b.result);
var c = { var c = {
url: undefined, url: undefined,
obj: {bar: 7, baz: 3}, obj: {bar: 7, baz: 3},
result: "?bar=7&baz=3" result: '?bar=7&baz=3'
}; };
expect(L.Util.getParamString(c.obj,c.url)).to.eql(c.result); expect(L.Util.getParamString(c.obj, c.url)).to.eql(c.result);
}); });
}); });
describe('#requestAnimFrame', function () { describe('#requestAnimFrame', function () {
it('calles a function on next frame, unless canceled', function (done) { it('calles a function on next frame, unless canceled', function (done) {
var spy = sinon.spy(), var spy = sinon.spy(),
spy2 = sinon.spy(),
foo = {}; foo = {};
L.Util.requestAnimFrame(spy); L.Util.requestAnimFrame(spy);
@ -160,7 +159,7 @@ describe('Util', function() {
}); });
}); });
describe('#limitExecByInterval', function() { describe('#limitExecByInterval', function () {
it('limits execution to not more often than specified time interval', function (done) { it('limits execution to not more often than specified time interval', function (done) {
var spy = sinon.spy(); var spy = sinon.spy();
@ -194,27 +193,29 @@ describe('Util', function() {
var str = L.Util.template(tpl, { var str = L.Util.template(tpl, {
foo: 'Vlad', foo: 'Vlad',
bar: 'Dave', bar: 'Dave',
baz:function(o){ baz: function (o) {
return o.bar; return o.bar;
} }
}); });
expect(str).to.eql('Hello Vlad and Dave!'); expect(str).to.eql('Hello Vlad and Dave!');
}); });
it('check the cache', function () { it('check the cache', function () {
var tpl = 'Hello {foo} and {baz }!'; var tpl = 'Hello {foo} and {baz }!';
var str = L.Util._templateCache[tpl]({ var str = L.Util._templateCache[tpl]({
foo: 'ladies', foo: 'ladies',
baz: function() { baz: function () {
return 'gentlemen'; return 'gentlemen';
} }
}); });
expect(str).to.eql('Hello ladies and gentlemen!'); expect(str).to.eql('Hello ladies and gentlemen!');
}); });
it('evaluates templates with a function', function () { it('evaluates templates with a function', function () {
var tpl = L.Util.compileTemplate('Hello { foo } and { bar}!',{}); var tpl = L.Util.compileTemplate('Hello { foo } and { bar}!', {});
var str1 = tpl({ var str1 = tpl({
foo: 'Vlad', foo: 'Vlad',
@ -228,6 +229,7 @@ describe('Util', function() {
expect(str1).to.eql('Hello Vlad and Dave!'); expect(str1).to.eql('Hello Vlad and Dave!');
expect(str2).to.eql('Hello {Calvin} and {Simon}!'); expect(str2).to.eql('Hello {Calvin} and {Simon}!');
}); });
it('does not modify text without a token variable', function () { it('does not modify text without a token variable', function () {
expect(L.Util.template('foo', {})).to.eql('foo'); expect(L.Util.template('foo', {})).to.eql('foo');
}); });