mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1d15d5f080
* Other ruby implementations use the spec/ruby directory. [Misc #13792] [ruby-core:82287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
82 lines
1.1 KiB
Ruby
82 lines
1.1 KiB
Ruby
class CApiClassSpecs
|
|
module M
|
|
def included?
|
|
true
|
|
end
|
|
end
|
|
|
|
class Alloc
|
|
attr_reader :initialized
|
|
attr_reader :arguments
|
|
|
|
def initialize(*args)
|
|
@initialized = true
|
|
@arguments = args
|
|
end
|
|
end
|
|
|
|
class Attr
|
|
def initialize
|
|
@foo, @bar, @baz = 1, 2, 3
|
|
end
|
|
end
|
|
|
|
class CVars
|
|
@@cvar = :cvar
|
|
@c_ivar = :c_ivar
|
|
|
|
def new_cv
|
|
@@new_cv if defined? @@new_cv
|
|
end
|
|
|
|
def new_cvar
|
|
@@new_cvar if defined? @@new_cvar
|
|
end
|
|
|
|
def rbdcv_cvar
|
|
@@rbdcv_cvar if defined? @@rbdcv_cvar
|
|
end
|
|
end
|
|
|
|
class Inherited
|
|
def self.inherited(klass)
|
|
klass
|
|
end
|
|
end
|
|
|
|
class NewClass
|
|
def self.inherited(klass)
|
|
raise "#{name}.inherited called"
|
|
end
|
|
end
|
|
|
|
class Super
|
|
def call_super_method
|
|
:super_method
|
|
end
|
|
end
|
|
|
|
class Sub < Super
|
|
def call_super_method
|
|
:subclass_method
|
|
end
|
|
end
|
|
|
|
class SubM < Super
|
|
include M
|
|
end
|
|
|
|
class SubSub < Sub
|
|
def call_super_method
|
|
:subclass_method
|
|
end
|
|
end
|
|
|
|
class A
|
|
C = 1
|
|
autoload :D, File.expand_path('../path_to_class.rb', __FILE__)
|
|
|
|
class B
|
|
end
|
|
end
|
|
end
|