1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-14 03:23:21 +00:00

Move some basic assertions about initial state into setUp().

This commit is contained in:
Alex Bramley 2011-08-24 13:55:18 +01:00
parent 389f5247f5
commit cf8ab830f7
2 changed files with 22 additions and 22 deletions

View file

@ -24,11 +24,6 @@ func Test001(t *testing.T) {
flag := false
c.Dispatcher = WasEventDispatched("connected", &flag)
// Assert that the "Host" field of c.Me hasn't been set yet
if c.Me.Host != "" {
t.Errorf("Host field contains unexpected value '%s'.", c.Me.Host)
}
// Call handler with a valid 001 line
c.h_001(parseLine(":irc.server.org 001 test :Welcome to IRC test!ident@somehost.com"))
// Should result in no response to server
@ -50,11 +45,6 @@ func Test433(t *testing.T) {
m, c := setUp(t)
defer tearDown(m, c)
// Assert that the nick set in setUp() is still "test" (just in case)
if c.Me.Nick != "test" {
t.Errorf("Tests will fail because Nick != 'test'.")
}
// Call handler with a 433 line, not triggering c.Me.Renick()
c.h_433(parseLine(":irc.server.org 433 test new :Nickname is already in use."))
m.Expect("NICK new_")
@ -81,11 +71,6 @@ func TestNICK(t *testing.T) {
m, c := setUp(t)
defer tearDown(m, c)
// Assert that the nick set in setUp() is still "test" (just in case)
if c.Me.Nick != "test" {
t.Errorf("Tests will fail because Nick != 'test'.")
}
// Call handler with a NICK line changing "our" nick to test1.
c.h_NICK(parseLine(":test!test@somehost.com NICK :test1"))
// Should generate no errors and no response to server