aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario/TestContext.js
diff options
context:
space:
mode:
authorAndres Ornelas2010-07-27 15:43:14 -0700
committerAndres Ornelas2010-07-27 15:43:14 -0700
commitda95010350882d9e13b5e461fb4a1e05bc7d065c (patch)
tree2d97049da8cb268dc0c4bca85e5908f6ac1b5d58 /test/scenario/TestContext.js
parentb42072733c3afd03a49457d88ffed28ebe55655e (diff)
downloadangular.js-da95010350882d9e13b5e461fb4a1e05bc7d065c.tar.bz2
stable before refactoring
Diffstat (limited to 'test/scenario/TestContext.js')
-rw-r--r--test/scenario/TestContext.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/scenario/TestContext.js b/test/scenario/TestContext.js
new file mode 100644
index 00000000..2081479e
--- /dev/null
+++ b/test/scenario/TestContext.js
@@ -0,0 +1,20 @@
+//var scenario, runner, log, Describe, It, $scenario, body;
+//
+//function logger(text) {
+// return function(done){
+// log += text;
+// (done||noop)();
+// };
+//}
+//
+//function beforeEach() {
+// log = '';
+// scenario = {};
+// body = _jQuery('<div></div>');
+// runner = new angular.scenario.Runner(scenario, _jQuery);
+// Describe = scenario.describe;
+// BeforeEach = scenario.beforeEach;
+// AfterEach = scenario.afterEach;
+// It = scenario.it;
+// $scenario = scenario.$scenario;
+//}