# File test/utest_jid.rb, line 44
  def test_05_equals
    jid1 = Jabber::JID.new("rich@jabber.com/test")
    jid2 = Jabber::JID.new("rich@jabber.com/test")
    assert_equals(jid1, jid2)
    jid1.strip_resource
    assert((not jid1==jid2))
  end