aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario/StepsTest.js
diff options
context:
space:
mode:
authorAdam Abrons2010-03-15 17:02:54 -0700
committerAdam Abrons2010-03-15 17:02:54 -0700
commit39c6c5975bedf6e1610f7328a088acda9ab3406a (patch)
treec49a499733b7a3ec3547c64ff4d3ba5f9381dfa7 /test/scenario/StepsTest.js
parent79b743e52feb2c57ba0ae42d6d2742bc2189b22f (diff)
downloadangular.js-39c6c5975bedf6e1610f7328a088acda9ab3406a.tar.bz2
get scenarios running again - open Runner.html in a browser to run them
Diffstat (limited to 'test/scenario/StepsTest.js')
-rw-r--r--test/scenario/StepsTest.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/scenario/StepsTest.js b/test/scenario/StepsTest.js
new file mode 100644
index 00000000..9d64d0a9
--- /dev/null
+++ b/test/scenario/StepsTest.js
@@ -0,0 +1,7 @@
+StepsTest = TestCase("StepsTest");
+
+StepsTest.prototype.testGivenDataset=function(){
+ var self = {frame:{}, dataset:[]};
+ angular.test.GIVEN.dataset.call(self);
+ assertEquals('$DATASET:{"dataset":[]}', self.frame.name);
+};