1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/module', __FILE__)
describe "Module#name" do
ruby_version_is ""..."1.9" do
it "is an empty string for an anonymous module" do
Module.new.name.should == ""
end
it "is an empty string when assigning to a constant in an anonymous module" do
m = Module.new
m::N = Module.new
m::N.name.should == ""
end
ruby_bug "http://bugs.ruby-lang.org/issues/6078", "2.0.0" do
it "is an empty string for a nested module created with the module keyword" do
m = Module.new
module m::N; end
m::N.name.should == ""
end
end
end
ruby_version_is "1.9" do
it "is nil for an anonymous module" do
Module.new.name.should be_nil
end
it "is nil when assigned to a constant in an anonymous module" do
m = Module.new
m::N = Module.new
m::N.name.should be_nil
end
it "is nil for a nested module created with the module keyword" do
m = Module.new
module m::N; end
m::N.name.should =~ /#<Module:0x[0-9a-f]+>::N/
end
end
it "is set when opened with the module keyword" do
ModuleSpecs.name.should == "ModuleSpecs"
end
it "is set when a nested module is opened with the module keyword" do
ModuleSpecs::Anonymous.name.should == "ModuleSpecs::Anonymous"
end
it "is set when assigning to a constant" do
m = Module.new
ModuleSpecs::Anonymous::A = m
m.name.should == "ModuleSpecs::Anonymous::A"
end
it "is not modified when assigning to a new constant after it has been accessed" do
m = Module.new
ModuleSpecs::Anonymous::B = m
m.name.should == "ModuleSpecs::Anonymous::B"
ModuleSpecs::Anonymous::C = m
m.name.should == "ModuleSpecs::Anonymous::B"
end
ruby_version_is "1.9" do
ruby_bug "http://bugs.ruby-lang.org/issues/6067", "2.0.0" do
it "is set with a conditional assignment to a nested constant" do
eval("ModuleSpecs::Anonymous::F ||= Module.new")
ModuleSpecs::Anonymous::F.name.should == "ModuleSpecs::Anonymous::F"
end
end
it "is set with a conditional assignment to a constant" do
module ModuleSpecs::Anonymous
D ||= Module.new
end
ModuleSpecs::Anonymous::D.name.should == "ModuleSpecs::Anonymous::D"
end
# http://redmine.ruby-lang.org/issues/show/1833
it "preserves the encoding in which the class was defined" do
require fixture(__FILE__, "name")
ModuleSpecs::NameEncoding.new.name.encoding.should == Encoding::UTF_8
end
end
it "is set when the anonymous outer module name is set" do
m = Module.new
m::N = Module.new
ModuleSpecs::Anonymous::E = m
m::N.name.should == "ModuleSpecs::Anonymous::E::N"
end
end
|