2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "NameError#name" do
|
|
|
|
it "returns a method name as a symbol" do
|
|
|
|
-> {
|
|
|
|
doesnt_exist
|
|
|
|
}.should raise_error(NameError) {|e| e.name.should == :doesnt_exist }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a constant name as a symbol" do
|
|
|
|
-> {
|
|
|
|
DoesntExist
|
|
|
|
}.should raise_error(NameError) {|e| e.name.should == :DoesntExist }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a constant name without namespace as a symbol" do
|
|
|
|
-> {
|
|
|
|
Object::DoesntExist
|
|
|
|
}.should raise_error(NameError) {|e| e.name.should == :DoesntExist }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a class variable name as a symbol" do
|
|
|
|
-> {
|
2020-03-27 18:08:52 -04:00
|
|
|
eval("class singleton_class::A; @@doesnt_exist end", binding, __FILE__, __LINE__)
|
2017-05-07 08:04:49 -04:00
|
|
|
}.should raise_error(NameError) { |e| e.name.should == :@@doesnt_exist }
|
|
|
|
end
|
|
|
|
|
2018-04-28 15:50:06 -04:00
|
|
|
it "returns the first argument passed to the method when a NameError is raised from #instance_variable_get" do
|
|
|
|
invalid_ivar_name = "invalid_ivar_name"
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2018-04-28 15:50:06 -04:00
|
|
|
-> {
|
|
|
|
Object.new.instance_variable_get(invalid_ivar_name)
|
|
|
|
}.should raise_error(NameError) {|e| e.name.should equal(invalid_ivar_name) }
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
2018-04-28 15:50:06 -04:00
|
|
|
it "returns the first argument passed to the method when a NameError is raised from #class_variable_get" do
|
|
|
|
invalid_cvar_name = "invalid_cvar_name"
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2018-04-28 15:50:06 -04:00
|
|
|
-> {
|
|
|
|
Object.class_variable_get(invalid_cvar_name)
|
|
|
|
}.should raise_error(NameError) {|e| e.name.should equal(invalid_cvar_name) }
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|