meta & signal tests prepare

This commit is contained in:
Dima Granetchi
2014-11-13 18:54:49 +02:00
parent c7ba13c275
commit 8906e8f324
3 changed files with 26 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
package ;
import buddy.BuddySuite;
class MetaTest extends BuddySuite {
public function new() {
describe("bindx should inherit @bindable meta", {
before({
});
it("bindx inherit metadata bindable for public fields");
it("bindx inherit metadata params");
});
}
}
-1
View File
@@ -1,7 +1,6 @@
package ;
import bindx.Bind;
import bindx.Bind.bind in bind;
import buddy.*;
using buddy.Should;
+7
View File
@@ -11,6 +11,13 @@ class TestProperty extends BuddySuite {
super();
describe("Bindx modify field setter", {
var p:BindableProperty;
before({
p = new BindableProperty();
});
it("bindx should bind/unbind fields with setter (lazySignal=true)");
it("bindx should bind/unbind fields with setter (lazySignal=false)");
it("bindx should bind 2 objects (custom setter) (lazySignal=true)");