# File test/test_sexp.rb, line 65
  def test_class_for
    sexp = Sexp.for SexpFor
    assert_equal s(:class, "TestSexp::SexpFor""TestSexp::SexpFor"), sexp[0..1]

    sexp = Sexp.for SexpFor, :method
    assert_equal s(:defn, :method), sexp[0..1]
  end