tag: layout, block

This commit is contained in:
harttle
2016-06-24 10:44:57 +08:00
parent 8fbbec089f
commit 3695eb2d6e
8 changed files with 111 additions and 7 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ describe('scope', function() {
scope.push({foo: 'foo', foo1: 'foo1'});
scope.pop();
expect(scope.get('foo')).to.equal('bar');
expect(scope.get('foo1')).to.equal('');
expect(scope.get('foo1')).to.equal(undefined);
expect(scope.get('bar[1].b[1]')).to.equal(2);
});
});