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.
technically, this is a new version of jasmine-ruby, which builds the jasmine gem available from gemcutter. Now at version 0.4.4.
February 21, 2010 at 10:08 am