Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
7c9508ed
Commit
7c9508ed
authored
Oct 08, 2014
by
Felix Lange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eventer: fix tests
parent
a38dafcc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
eventer_test.go
eventer/eventer_test.go
+4
-4
No files found.
eventer/eventer_test.go
View file @
7c9508ed
...
...
@@ -3,7 +3,7 @@ package eventer
import
"testing"
func
TestChannel
(
t
*
testing
.
T
)
{
eventer
:=
New
(
nil
)
eventer
:=
New
()
c
:=
make
(
Channel
,
1
)
eventer
.
RegisterChannel
(
"test"
,
c
)
...
...
@@ -17,7 +17,7 @@ func TestChannel(t *testing.T) {
}
func
TestFunction
(
t
*
testing
.
T
)
{
eventer
:=
New
(
nil
)
eventer
:=
New
()
var
data
string
eventer
.
RegisterFunc
(
"test"
,
func
(
ev
Event
)
{
...
...
@@ -31,7 +31,7 @@ func TestFunction(t *testing.T) {
}
func
TestRegister
(
t
*
testing
.
T
)
{
eventer
:=
New
(
nil
)
eventer
:=
New
()
c
:=
eventer
.
Register
(
"test"
)
eventer
.
Post
(
"test"
,
"hello world"
)
...
...
@@ -44,7 +44,7 @@ func TestRegister(t *testing.T) {
}
func
TestOn
(
t
*
testing
.
T
)
{
eventer
:=
New
(
nil
)
eventer
:=
New
()
c
:=
make
(
Channel
,
1
)
eventer
.
On
(
"test"
,
c
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment