2008-12-04 01:11:05 +00:00
|
|
|
describe('one suite description', function () {
|
2009-03-01 13:34:00 +00:00
|
|
|
it('should be a test', function() {
|
|
|
|
runs(function () {
|
|
|
|
this.expects_that(true).should_equal(true);
|
2008-12-04 01:11:05 +00:00
|
|
|
});
|
2009-03-01 13:34:00 +00:00
|
|
|
});
|
|
|
|
});
|