git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7491 626c5289-ae23-0410-ae9c-e8d60b6d4f22
40 lines
910 B
Ruby
40 lines
910 B
Ruby
require 'abstract_signature'
|
|
|
|
include Abstract_signature
|
|
|
|
#
|
|
# Shouldn't be able to instantiate Abstract_foo, because it declares
|
|
# a pure virtual function.
|
|
#
|
|
|
|
exceptionRaised = false
|
|
begin
|
|
Abstract_foo.new
|
|
rescue NameError
|
|
exceptionRaised = true
|
|
rescue TypeError
|
|
# In Ruby 1.8 the exception raised is:
|
|
# TypeError: allocator undefined for Abstract_signature::Abstract_foo
|
|
exceptionRaised = true
|
|
ensure
|
|
raise RuntimeError unless exceptionRaised
|
|
end
|
|
|
|
#
|
|
# Shouldn't be able to instantiate an Abstract_bar either, because it doesn't
|
|
# implement the pure virtual function with the correct signature.
|
|
#
|
|
|
|
exceptionRaised = false
|
|
begin
|
|
Abstract_bar.new
|
|
rescue NameError
|
|
exceptionRaised = true
|
|
rescue TypeError
|
|
# In Ruby 1.8 the exception raised is:
|
|
# TypeError: allocator undefined for Abstract_signature::Abstract_bar
|
|
exceptionRaised = true
|
|
ensure
|
|
raise RuntimeError unless exceptionRaised
|
|
end
|
|
|