Sha256: ad12078cada942ece845989694162345f1fd218b88f9a47d318c1dedafa04c58
Contents?: true
Size: 1014 Bytes
Versions: 6
Compression:
Stored size: 1014 Bytes
Contents
require File.expand_path('../test_helper.rb', File.dirname(__FILE__)) require 'ruby_parser' describe 'Using RipperRubyParser and RubyParser' do let :newparser do RipperRubyParser::Parser.new end let :oldparser do RubyParser.new end describe 'for a program with quite some comments' do let :program do <<-END # Foo class Foo # The foo # method def foo bar # bar # internal comment end def bar baz end end # Quux module Qux class Quux def bar end def baz end end end END end let :original do oldparser.parse program end let :imitation do newparser.parse program end it 'gives the same result' do imitation.must_equal original end it 'gives the same result with comments' do to_comments(imitation).must_equal to_comments(original) end end end
Version data entries
6 entries across 6 versions & 1 rubygems