diff --git a/test/MetaTest.hx b/test/MetaTest.hx new file mode 100644 index 0000000..cf4e935 --- /dev/null +++ b/test/MetaTest.hx @@ -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"); + + }); + } +} \ No newline at end of file diff --git a/test/SignalTest.hx b/test/SignalTest.hx index 846c144..b2bc4cd 100644 --- a/test/SignalTest.hx +++ b/test/SignalTest.hx @@ -1,7 +1,6 @@ package ; import bindx.Bind; -import bindx.Bind.bind in bind; import buddy.*; using buddy.Should; diff --git a/test/TestProperty.hx b/test/TestProperty.hx index 47f06da..1e5b841 100644 --- a/test/TestProperty.hx +++ b/test/TestProperty.hx @@ -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)");