aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/reactor_test.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-01 16:30:19 +0800
committerobscuren <geffobscura@gmail.com>2014-08-01 16:30:19 +0800
commit2e7cf835222274a311302c33498cf83bb2593b7a (patch)
tree6689e7017a14d2198771fbe5148bb8ad13e9e8a1 /ethutil/reactor_test.go
parent5ede1224e48fd82961bd4a0b2ec1a3eda0b6d99b (diff)
parent8bed47a2d4377b7a49f34350ae5c5ea50464b95d (diff)
downloaddexon-2e7cf835222274a311302c33498cf83bb2593b7a.tar
dexon-2e7cf835222274a311302c33498cf83bb2593b7a.tar.gz
dexon-2e7cf835222274a311302c33498cf83bb2593b7a.tar.bz2
dexon-2e7cf835222274a311302c33498cf83bb2593b7a.tar.lz
dexon-2e7cf835222274a311302c33498cf83bb2593b7a.tar.xz
dexon-2e7cf835222274a311302c33498cf83bb2593b7a.tar.zst
dexon-2e7cf835222274a311302c33498cf83bb2593b7a.zip
Merge branch 'ethersphere-feature/ethutil-refactor' into develop
Diffstat (limited to 'ethutil/reactor_test.go')
-rw-r--r--ethutil/reactor_test.go30
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")
- }
-}