Skip to content

Commit

Permalink
fixing tests finally
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpowell committed Aug 15, 2012
1 parent 4993120 commit 93a5813
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/basic-api-spec.js
@@ -1,5 +1,5 @@
describe('tbd-builder', function() { describe('tbd-builder', function() {
var tbd = require('../lib/'); var tbd = require('../');


beforeEach(function() { beforeEach(function() {
this.addMatchers({ this.addMatchers({
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion tests/complex-property-spec.js
@@ -1,5 +1,5 @@
describe('tbd-complex-properties', function() { describe('tbd-complex-properties', function() {
var tbd = require('../lib/'); var tbd = require('../');
it('should clone complex properties', function() { it('should clone complex properties', function() {
var data = tbd.from({ var data = tbd.from({
foo: { foo: {
Expand Down
2 changes: 1 addition & 1 deletion tests/objects-from-ctor-spec.js
@@ -1,5 +1,5 @@
describe('tbd-supports-ctor-pattern', function() { describe('tbd-supports-ctor-pattern', function() {
var tbd = require('../lib/'); var tbd = require('../');


beforeEach(function() { beforeEach(function() {
this.addMatchers({ this.addMatchers({
Expand Down
2 changes: 1 addition & 1 deletion tests/simple-property-spec.js
@@ -1,5 +1,5 @@
describe('tbd-properties', function() { describe('tbd-properties', function() {
var tbd = require('../lib/'); var tbd = require('../');
it('should clone properties from source', function() { it('should clone properties from source', function() {
var data = tbd.from({ foo: 'bar' }).make(1); var data = tbd.from({ foo: 'bar' }).make(1);


Expand Down
2 changes: 1 addition & 1 deletion tests/until-sequential-spec.js
@@ -1,5 +1,5 @@
describe('tbd-util-sequantial', function() { describe('tbd-util-sequantial', function() {
var tbd = require('../lib/'); var tbd = require('../');


it('should generate a sequential value for each record', function () { it('should generate a sequential value for each record', function () {
var data = tbd.from({}) var data = tbd.from({})
Expand Down
2 changes: 1 addition & 1 deletion tests/util-random-spec.js
@@ -1,5 +1,5 @@
describe('tbd-util-random', function() { describe('tbd-util-random', function() {
var tbd = require('../lib/'); var tbd = require('../');


beforeEach(function() { beforeEach(function() {
this.addMatchers({ this.addMatchers({
Expand Down
2 changes: 1 addition & 1 deletion tests/util-range-spec.js
@@ -1,5 +1,5 @@
describe('tbd-util-range', function() { describe('tbd-util-range', function() {
var tbd = require('../lib/'); var tbd = require('../');


beforeEach(function() { beforeEach(function() {
this.addMatchers({ this.addMatchers({
Expand Down

0 comments on commit 93a5813

Please sign in to comment.