diff options
author | zelig <viktor.tron@gmail.com> | 2014-07-05 02:37:40 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-07-05 02:37:40 +0800 |
commit | af2726414078840aae32aa4c982d3a8c5cf66ef5 (patch) | |
tree | 44677619df5805e23b1dcb371077053b7b9a2cee /ethutil/reactor_test.go | |
parent | d5bcc01eae2912528e8ab2a65733c84fa3f8f4e1 (diff) | |
download | go-tangerine-af2726414078840aae32aa4c982d3a8c5cf66ef5.tar go-tangerine-af2726414078840aae32aa4c982d3a8c5cf66ef5.tar.gz go-tangerine-af2726414078840aae32aa4c982d3a8c5cf66ef5.tar.bz2 go-tangerine-af2726414078840aae32aa4c982d3a8c5cf66ef5.tar.lz go-tangerine-af2726414078840aae32aa4c982d3a8c5cf66ef5.tar.xz go-tangerine-af2726414078840aae32aa4c982d3a8c5cf66ef5.tar.zst go-tangerine-af2726414078840aae32aa4c982d3a8c5cf66ef5.zip |
remove reactor code from ethutil
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") - } -} |