# File test/test_unified_ruby.rb, line 167
  def test_rewrite_dmethod
    @insert = s(:dmethod,
                :a_method,
                s(:scope,
                  s(:block,
                    s(:args, :x),
                    s(:lit, 42))))
    @expect = s(:scope,
                s(:block,
                  s(:args, :x),
                  s(:lit, 42)))

    doit
  end