2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
2019-11-30 21:26:52 +01:00
|
|
|
require_relative 'shared/dup'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
describe "Struct-based class#dup" do
|
|
|
|
|
2019-11-30 21:26:52 +01:00
|
|
|
it_behaves_like :struct_dup, :dup
|
|
|
|
|
2017-05-07 12:04:49 +00:00
|
|
|
# From https://github.com/jruby/jruby/issues/3686
|
|
|
|
it "retains an included module in the ancestor chain for the struct's singleton class" do
|
|
|
|
klass = Struct.new(:foo)
|
|
|
|
mod = Module.new do
|
|
|
|
def hello
|
|
|
|
"hello"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
klass.extend(mod)
|
|
|
|
klass_dup = klass.dup
|
|
|
|
klass_dup.hello.should == "hello"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|