diff options
author | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-07-07 16:52:02 +0800 |
---|---|---|
committer | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-07-07 16:52:02 +0800 |
commit | b958179263aa1fa5060dd5d5848b8bb092a4165c (patch) | |
tree | 9ea81946396fc584c8c8a0b64d9e9f9fff43b17a /ethutil/reactor_test.go | |
parent | b232acd04ef957fb65e1c49b330165535da7e871 (diff) | |
parent | 5a2afc575485e2d651b9840f5d1ea080cdc72fa7 (diff) | |
download | go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.gz go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.bz2 go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.lz go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.xz go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.tar.zst go-tangerine-b958179263aa1fa5060dd5d5848b8bb092a4165c.zip |
Merge pull request #33 from ethersphere/feature/ethutil-refactor
ethreact - Feature/ethutil refactor
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") - } -} |