Sha256: 99b7de6f053a41ceb91bf896e076f8d85a772390d9edc689fa499425b9448986
Contents?: true
Size: 814 Bytes
Versions: 1
Compression:
Stored size: 814 Bytes
Contents
// TODO: Fix these unit tests! describe("Env", function() { var env; beforeEach(function() { env = new j$.Env(); }); describe("#pending", function() { it("throws the Pending Spec exception", function() { expect(function() { env.pending(); }).toThrow(j$.Spec.pendingSpecExceptionMessage); }); it("throws the Pending Spec exception with a custom message", function() { expect(function() { env.pending('custom message'); }).toThrow(j$.Spec.pendingSpecExceptionMessage + 'custom message'); }); }); describe("#topSuite", function() { it("returns the Jasmine top suite for users to traverse the spec tree", function() { var suite = env.topSuite(); expect(suite.description).toEqual('Jasmine__TopLevel__Suite'); }); }); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jasmine-core-2.2.0 | ./lib/jasmine-core/spec/core/EnvSpec.js |