Reorg. Added examples/ with html and ruby test runner examples

This commit is contained in:
ragaskar
2009-08-26 22:13:30 -07:00
parent ba5b4ab166
commit 7a446d53c0
8 changed files with 92 additions and 30 deletions

View File

@@ -0,0 +1,11 @@
describe('ExampleSuite', function () {
it('should have a passing test', function() {
expect(true).toEqual(true);
});
describe('Nested Describe', function () {
it('should also have a passing test', function () {
expect(true).toEqual(true);
});
});
});