From 79f02193ca9afde2b2fe24fa7458ad3a74c9cbf3 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Fri, 25 Oct 2013 23:29:07 -0700 Subject: [PATCH] All green --- test/dist/specs/robot.spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/dist/specs/robot.spec.js b/test/dist/specs/robot.spec.js index 0044240..5f9a026 100644 --- a/test/dist/specs/robot.spec.js +++ b/test/dist/specs/robot.spec.js @@ -17,19 +17,19 @@ name: "irobot", work: testWork }); - it("should have a name, if given", function() { + it("has a name, if given", function() { return robot.name.should.be.equal('irobot'); }); - it("should have a random name, if not given", function() { + it("has a random name, if not given", function() { var r; sinon.stub(Robot, 'randomName').returns('Electra'); r = new Robot; return r.name.should.be.equal('Electra'); }); - it("should have work", function() { + it("has work", function() { return robot.work.should.be.equal(testWork); }); - return it("should be able to start", function() { + return it("can start work", function() { var startConnections, startDevices, work; startConnections = sinon.spy(robot, 'startConnections'); startDevices = sinon.spy(robot, 'startDevices');