# File test/test_sexp.rb, line 97
  def test_equals2_array
    # can't use assert_equals because it uses array as receiver
    assert_not_equal(@sexp, [1, 2, 3],
                     "Sexp must not be equal to equivalent array")
    # both directions just in case
    # HACK - this seems to be a bug in ruby as far as I'm concerned
    # assert_not_equal([1, 2, 3], @sexp,
    #   "Sexp must not be equal to equivalent array")
  end