meta & signal tests prepare
This commit is contained in:
@@ -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,7 +1,6 @@
|
|||||||
package ;
|
package ;
|
||||||
|
|
||||||
import bindx.Bind;
|
import bindx.Bind;
|
||||||
import bindx.Bind.bind in bind;
|
|
||||||
import buddy.*;
|
import buddy.*;
|
||||||
|
|
||||||
using buddy.Should;
|
using buddy.Should;
|
||||||
|
|||||||
@@ -11,6 +11,13 @@ class TestProperty extends BuddySuite {
|
|||||||
super();
|
super();
|
||||||
|
|
||||||
describe("Bindx modify field setter", {
|
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=true)");
|
||||||
it("bindx should bind/unbind fields with setter (lazySignal=false)");
|
it("bindx should bind/unbind fields with setter (lazySignal=false)");
|
||||||
it("bindx should bind 2 objects (custom setter) (lazySignal=true)");
|
it("bindx should bind 2 objects (custom setter) (lazySignal=true)");
|
||||||
|
|||||||
Reference in New Issue
Block a user