Skip to content

Commit

Permalink
oops wrong place for list of stubs, fixed now
Browse files Browse the repository at this point in the history
  • Loading branch information
azendal committed Nov 2, 2010
1 parent ed55c9f commit c3a577c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tellurium.js
Expand Up @@ -42,7 +42,6 @@ Module(Tellurium, 'Context')({
code : null,
parent : null,
children : null,
stubs : null,
completedChildren : null,
beforeEachPool : null,
afterEachPool : null,
Expand All @@ -51,7 +50,6 @@ Module(Tellurium, 'Context')({
this.description = description;
this.code = code;
this.children = [];
this.stubs = [];
this.completedChildren = [];
this.beforeEachPool = [];
this.afterEachPool = [];
Expand Down Expand Up @@ -183,6 +181,7 @@ Class(Tellurium, 'Specification')({
description : null,
code : null,
parent : null,
stubs : null,
assertions : null,
registry : null,
status : null,
Expand All @@ -191,6 +190,7 @@ Class(Tellurium, 'Specification')({
this.description = description;
this.code = code;
this.registry = {};
this.stubs = [];
this.assertions = [];
this.isCompleted = false;
},
Expand Down

0 comments on commit c3a577c

Please sign in to comment.