diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-07 16:53:25 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-07 16:53:25 +0800 |
commit | 9dab7dcc3c99d387ad2c0a1623b574d3023bdfae (patch) | |
tree | 8f98cce69568d29a954410e18dce8c121d25592e /ethutil/reactor_test.go | |
parent | d40cba3042564f3471aa20a5cf477cafcacc2189 (diff) | |
parent | b958179263aa1fa5060dd5d5848b8bb092a4165c (diff) | |
download | dexon-9dab7dcc3c99d387ad2c0a1623b574d3023bdfae.tar dexon-9dab7dcc3c99d387ad2c0a1623b574d3023bdfae.tar.gz dexon-9dab7dcc3c99d387ad2c0a1623b574d3023bdfae.tar.bz2 dexon-9dab7dcc3c99d387ad2c0a1623b574d3023bdfae.tar.lz dexon-9dab7dcc3c99d387ad2c0a1623b574d3023bdfae.tar.xz dexon-9dab7dcc3c99d387ad2c0a1623b574d3023bdfae.tar.zst dexon-9dab7dcc3c99d387ad2c0a1623b574d3023bdfae.zip |
Merge branch 'develop' of github.com-obscure:ethereum/eth-go into develop
Diffstat (limited to 'ethutil/reactor_test.go')
-rw-r--r-- | ethutil/reactor_test.go | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/ethutil/reactor_test.go b/ethutil/reactor_test.go deleted file mode 100644 index 48c2f0df3..000000000 --- a/ethutil/reactor_test.go +++ /dev/null @@ -1,30 +0,0 @@ -package ethutil - -import "testing" - -func TestReactorAdd(t *testing.T) { - engine := NewReactorEngine() - ch := make(chan React) - engine.Subscribe("test", ch) - if len(engine.patterns) != 1 { - t.Error("Expected patterns to be 1, got", len(engine.patterns)) - } -} - -func TestReactorEvent(t *testing.T) { - engine := NewReactorEngine() - - // Buffer 1, so it doesn't block for this test - ch := make(chan React, 1) - engine.Subscribe("test", ch) - engine.Post("test", "hello") - - value := <-ch - if val, ok := value.Resource.(string); ok { - if val != "hello" { - t.Error("Expected Resource to be 'hello', got", val) - } - } else { - t.Error("Unable to cast") - } -} |