Changeset

556:624367a765cd

Add a couple more tests for jid.split
author Matthew Wild <mwild1@gmail.com>
date Fri, 05 Dec 2008 02:02:40 +0000
parents 555:1c29c0b22022
children 557:c9b3ffb08fe3
files tests/test_util_jid.lua
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test_util_jid.lua	Fri Dec 05 00:25:41 2008 +0000
+++ b/tests/test_util_jid.lua	Fri Dec 05 02:02:40 2008 +0000
@@ -33,6 +33,8 @@
 	test(nil,			nil,	nil	, nil		);
 
 	test("node@/server", nil, nil, nil , nil );
+	test("@server",      nil, nil, nil , nil );
+	test("@server/resource",nil,nil,nil, nil );
 end
 
 function bare(bare)