dwf/rva: Added examples, fixed bug with initializing currentSuite with a mock.

This commit is contained in:
pivotal
2008-12-03 17:11:05 -08:00
parent e025755a61
commit 00f5f1722c
7 changed files with 113 additions and 24 deletions

7
example/example.js Normal file
View File

@@ -0,0 +1,7 @@
describe('one suite description', function () {
it('should be a test', function() {
runs(function () {
this.expects_that(true).should_equal(true);
});
});
});