Sha256: 1b40cfb4ae5c906d6db9daa9d413e9446bb4f1360bce26063ac978aaf610d96e
Contents?: true
Size: 911 Bytes
Versions: 100
Compression:
Stored size: 911 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true #-- # 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
100 entries across 62 versions & 22 rubygems