merge runner cleanup #2134
This commit is contained in:
commit
ec7baabccf
@ -2,7 +2,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Spec Runner</title>
|
<title>Leaflet Spec Runner</title>
|
||||||
<link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css">
|
<link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -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();
|
||||||
|
|
||||||
@ -216,7 +215,7 @@ describe('Util', function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
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',
|
||||||
|
Loading…
Reference in New Issue
Block a user