mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
392 B
Ruby
15 lines
392 B
Ruby
|
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
require File.expand_path('../fixtures/classes', __FILE__)
|
||
|
|
||
|
describe "Singleton#_dump" do
|
||
|
|
||
|
it "returns an empty string" do
|
||
|
SingletonSpecs::MyClass.instance.send(:_dump).should == ""
|
||
|
end
|
||
|
|
||
|
it "returns an empty string from a singleton subclass" do
|
||
|
SingletonSpecs::MyClassChild.instance.send(:_dump).should == ""
|
||
|
end
|
||
|
|
||
|
end
|