diff options
Diffstat (limited to 'scenario/datastore-scenarios.js')
| -rw-r--r-- | scenario/datastore-scenarios.js | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/scenario/datastore-scenarios.js b/scenario/datastore-scenarios.js new file mode 100644 index 00000000..6038070b --- /dev/null +++ b/scenario/datastore-scenarios.js @@ -0,0 +1,19 @@ +angular.scenarioDef.datastore = { +  $before:[ +    {Given:"dataset",  +      dataset:{ +        Book:[{$id:'moby', name:"Moby Dick"},  +              {$id:'gadsby', name:'Great Gadsby'}] +      } +    }, +    {Given:"browser", at:"datastore.html#book=moby"}, +  ], +  checkLoadBook:[ +    {Then:"drainRequestQueue"}, +                  +    {Then:"text", at:"{{book.$id}}", should_be:"moby"}, +    {Then:"text", at:"li[$index=0] {{book.name}}", should_be:"Great Gahdsby"}, +    {Then:"text", at:"li[$index=0] {{book.name}}", should_be:"Moby Dick"}, +     +  ] +};  | 
