Sha256: 93e427dd909450df303bc967ee6b9e6066ff44093ab7d3d673ea27afe9d45cb4

Contents?: true

Size: 881 Bytes

Versions: 70

Compression:

Stored size: 881 Bytes

Contents

#!/usr/bin/env ruby

#--
# Portions copyright 2004 by Jim Weirich (jim@weirichhouse.org).
# Portions copyright 2005 by Sam Ruby (rubys@intertwingly.net).
# All rights reserved.

# Permission is granted for use, copying, modification, distribution,
# and distribution of modified versions of this work as long as the
# above copyright notice is included.
#++

require 'helper'
require 'builder/xchar'

class TestNameCollisions < Builder::Test
  module Collide
    def xchr
    end
  end

  def test_no_collision
    assert_nothing_raised do
      Builder.check_for_name_collision(Collide, :not_defined)
    end
  end

  def test_collision
    assert_raise RuntimeError do
      Builder.check_for_name_collision(Collide, "xchr")
    end
  end

  def test_collision_with_symbol
    assert_raise RuntimeError do
      Builder.check_for_name_collision(Collide, :xchr)
    end
  end
end

Version data entries

70 entries across 59 versions & 16 rubygems

Version Path
vagrant-unbundled-1.9.5.1 vendor/bundle/ruby/2.4.0/gems/builder-3.2.3/test/test_namecollision.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/builder-3.2.3/test/test_namecollision.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/builder-3.2.3/test/test_namecollision.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/builder-3.2.3/test/test_namecollision.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/builder-3.2.3/test/test_namecollision.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/builder-3.2.3/test/test_namecollision.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/builder-3.2.3/test/test_namecollision.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/builder-3.2.3/test/test_namecollision.rb
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/builder-3.2.3/test/test_namecollision.rb
builder-3.2.3 test/test_namecollision.rb