From 1b02a0c63bff6c494c0826f7fcd0a73860d5cb9a Mon Sep 17 00:00:00 2001 From: Dima Granetchi Date: Sat, 3 Jan 2015 13:50:02 +0200 Subject: [PATCH] remove extra tests --- test/ChainBindTest.hx | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/ChainBindTest.hx b/test/ChainBindTest.hx index 50c4ea4..8392279 100644 --- a/test/ChainBindTest.hx +++ b/test/ChainBindTest.hx @@ -89,16 +89,6 @@ class ChainBindTest extends BuddySuite { b.c.c.f("tada").d = val; b2.c.c.f("tada").d = val; - BindExt.expr(b.c.c.f("tada"), function (f, t) { - t.should.not.be(null); - }); - BindExt.chain(b.c.c, function (f, t) { - t.should.not.be(null); - }); - BindExt.chain(b.c, function (f, t) { - t.should.not.be(null); - }); - var unbind = BindExt.chain(b.c.c.f("tada").d, function (f:String, t:String) { f.should.be(from); from = val;