3 pending tests
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
package ;
|
||||||
|
|
||||||
|
import bindx.Bind;
|
||||||
|
import bindx.IBindable;
|
||||||
|
import buddy.BuddySuite;
|
||||||
|
|
||||||
|
using buddy.Should;
|
||||||
|
|
||||||
|
class ForceTest extends BuddySuite {
|
||||||
|
|
||||||
|
public function new() {
|
||||||
|
|
||||||
|
describe("Using @:bindable(force=true)", {
|
||||||
|
|
||||||
|
it("bindx should correct work with readonly fields");
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
package ;
|
||||||
|
|
||||||
|
import bindx.Bind;
|
||||||
|
import bindx.IBindable;
|
||||||
|
import buddy.BuddySuite;
|
||||||
|
|
||||||
|
using buddy.Should;
|
||||||
|
|
||||||
|
class InlineTest extends BuddySuite {
|
||||||
|
|
||||||
|
public function new() {
|
||||||
|
|
||||||
|
describe("Using @:bindable(inlineSetter=true/false, inlineSignalGetter=true/false)", {
|
||||||
|
|
||||||
|
it("bindx should generate inline setter");
|
||||||
|
it("bindx should generate inline signal getter");
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user