Glenn JahnkeGlenn Jahnke
Standup 2/17/2010: A New Jasmine Release
edit Posted by Glenn Jahnke on Wednesday February 17, 2010 at 09:14AM

Interesting Things

There is a new release of Jasmine, the Javascript testing framework written by several people here at Pivotal Labs, due to a bug found in CI related to implementing Rack.

For those uninitiated to Javascript BDD testing, here is a quick example.

it('should be a test', function () {
  var foo = 0
  foo++;

  expect(foo).toBeTruthy();
  expect(foo).toEqual(1);
});

Be sure to check out Jasmine at Github.

Comments

  1. Rajan Agaskar Rajan Agaskar on February 21, 2010 at 10:08AM

    technically, this is a new version of jasmine-ruby, which builds the jasmine gem available from gemcutter. Now at version 0.4.4.