tests, tests, tests...

This commit is contained in:
Dima Granetchi
2014-11-13 22:47:23 +02:00
parent 17aec40ae1
commit c43e4a08a2
5 changed files with 16 additions and 11 deletions
+12 -7
View File
@@ -1,13 +1,20 @@
package ;
import bindx.IBindable;
import bindx.Bind;
import bindx.IBindable;
import buddy.BuddySuite;
class InheritanceTest extends haxe.unit.TestCase {
using buddy.Should;
class InheritanceTest extends BuddySuite {
public function new() {
super();
}
describe("Using classes inheritance", {
it("bindx should support class inheritance");
});
}
/*
function testChild() {
var c = new BindableChild();
c.i = 0;
@@ -29,9 +36,7 @@ class InheritanceTest extends haxe.unit.TestCase {
});
c.s = "1";
assertEquals(sChanged, 1);
}
}*/
}
@:bindable