mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 18:17:48 +00:00
Update vendors and dev deps.
This commit is contained in:
6
vendor/backbone/test/collection.js
vendored
6
vendor/backbone/test/collection.js
vendored
@@ -429,7 +429,7 @@
|
||||
});
|
||||
var colE = new Backbone.Collection([e]);
|
||||
var colF = new Backbone.Collection([f]);
|
||||
assert.ok(e != f);
|
||||
assert.notEqual(e, f);
|
||||
assert.ok(colE.length === 1);
|
||||
assert.ok(colF.length === 1);
|
||||
colE.remove(e);
|
||||
@@ -857,7 +857,7 @@
|
||||
assert.expect(2);
|
||||
var Model = Backbone.Model.extend({
|
||||
validate: function(attrs) {
|
||||
if (attrs.id == 3) return "id can't be 3";
|
||||
if (attrs.id === 3) return "id can't be 3";
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1324,7 +1324,7 @@
|
||||
var col = new Backbone.Collection;
|
||||
var model1 = col.push({id: 101});
|
||||
var model2 = col.push({id: 101});
|
||||
assert.ok(model2.cid == model1.cid);
|
||||
assert.ok(model2.cid === model1.cid);
|
||||
});
|
||||
|
||||
QUnit.test('`set` with non-normal id', function(assert) {
|
||||
|
||||
6
vendor/backbone/test/events.js
vendored
6
vendor/backbone/test/events.js
vendored
@@ -352,8 +352,8 @@
|
||||
_.extend(obj, Backbone.Events);
|
||||
obj.on('all', function(event) {
|
||||
obj.counter++;
|
||||
if (event == 'a') a = true;
|
||||
if (event == 'b') b = true;
|
||||
if (event === 'a') a = true;
|
||||
if (event === 'b') b = true;
|
||||
})
|
||||
.trigger('a b');
|
||||
assert.ok(a);
|
||||
@@ -477,7 +477,7 @@
|
||||
QUnit.test('if callback is truthy but not a function, `on` should throw an error just like jQuery', function(assert) {
|
||||
assert.expect(1);
|
||||
var view = _.extend({}, Backbone.Events).on('test', 'noop');
|
||||
assert.throws(function() {
|
||||
assert.raises(function() {
|
||||
view.trigger('test');
|
||||
});
|
||||
});
|
||||
|
||||
14
vendor/backbone/test/model.js
vendored
14
vendor/backbone/test/model.js
vendored
@@ -89,7 +89,7 @@
|
||||
doc.collection.url = '/collection/';
|
||||
assert.equal(doc.url(), '/collection/1-the-tempest');
|
||||
doc.collection = null;
|
||||
assert.throws(function() { doc.url(); });
|
||||
assert.raises(function() { doc.url(); });
|
||||
doc.collection = collection;
|
||||
});
|
||||
|
||||
@@ -251,12 +251,12 @@
|
||||
var changeCount = 0;
|
||||
a.on('change:foo', function() { changeCount += 1; });
|
||||
a.set({foo: 2});
|
||||
assert.ok(a.get('foo') == 2, 'Foo should have changed.');
|
||||
assert.ok(changeCount == 1, 'Change count should have incremented.');
|
||||
assert.equal(a.get('foo'), 2, 'Foo should have changed.');
|
||||
assert.equal(changeCount, 1, 'Change count should have incremented.');
|
||||
// set with value that is not new shouldn't fire change event
|
||||
a.set({foo: 2});
|
||||
assert.ok(a.get('foo') == 2, 'Foo should NOT have changed, still 2');
|
||||
assert.ok(changeCount == 1, 'Change count should NOT have incremented.');
|
||||
assert.equal(a.get('foo'), 2, 'Foo should NOT have changed, still 2');
|
||||
assert.equal(changeCount, 1, 'Change count should NOT have incremented.');
|
||||
|
||||
a.validate = function(attrs) {
|
||||
assert.equal(attrs.foo, void 0, 'validate:true passed while unsetting');
|
||||
@@ -264,7 +264,7 @@
|
||||
a.unset('foo', {validate: true});
|
||||
assert.equal(a.get('foo'), void 0, 'Foo should have changed');
|
||||
delete a.validate;
|
||||
assert.ok(changeCount == 2, 'Change count should have incremented for unset.');
|
||||
assert.equal(changeCount, 2, 'Change count should have incremented for unset.');
|
||||
|
||||
a.unset('id');
|
||||
assert.equal(a.id, undefined, 'Unsetting the id should remove the id property.');
|
||||
@@ -746,7 +746,7 @@
|
||||
var lastError;
|
||||
var model = new Backbone.Model();
|
||||
model.validate = function(attrs) {
|
||||
if (attrs.admin != this.get('admin')) return "Can't change admin status.";
|
||||
if (attrs.admin !== this.get('admin')) return "Can't change admin status.";
|
||||
};
|
||||
model.on('invalid', function(model, error) {
|
||||
lastError = error;
|
||||
|
||||
2
vendor/backbone/test/router.js
vendored
2
vendor/backbone/test/router.js
vendored
@@ -134,7 +134,7 @@
|
||||
},
|
||||
|
||||
optionalItem: function(arg){
|
||||
this.arg = arg != void 0 ? arg : null;
|
||||
this.arg = arg !== void 0 ? arg : null;
|
||||
},
|
||||
|
||||
splat: function(args) {
|
||||
|
||||
2
vendor/backbone/test/sync.js
vendored
2
vendor/backbone/test/sync.js
vendored
@@ -142,7 +142,7 @@
|
||||
QUnit.test('urlError', function(assert) {
|
||||
assert.expect(2);
|
||||
var model = new Backbone.Model();
|
||||
assert.throws(function() {
|
||||
assert.raises(function() {
|
||||
model.fetch();
|
||||
});
|
||||
model.fetch({url: '/one/two'});
|
||||
|
||||
Reference in New Issue
Block a user