3 pending tests

This commit is contained in:
Dima Granetchi
2014-11-15 16:29:54 +02:00
parent 7eba4bf7e9
commit 6c70b0eb78
2 changed files with 39 additions and 0 deletions
+19
View File
@@ -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");
});
}
}
+20
View File
@@ -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");
});
}
}