2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 12:04:49 +00: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
|
|
|
|
-> {
|
|
|
|
-> {
|
|
|
|
@@doesnt_exist
|
|
|
|
}.should complain(/class variable access from toplevel/)
|
|
|
|
}.should raise_error(NameError) { |e| e.name.should == :@@doesnt_exist }
|
|
|
|
end
|
|
|
|
|
2018-04-28 19:50:06 +00: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 12:04:49 +00:00
|
|
|
|
2018-04-28 19:50:06 +00:00
|
|
|
-> {
|
|
|
|
Object.new.instance_variable_get(invalid_ivar_name)
|
|
|
|
}.should raise_error(NameError) {|e| e.name.should equal(invalid_ivar_name) }
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
2018-04-28 19:50:06 +00: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 12:04:49 +00:00
|
|
|
|
2018-04-28 19:50:06 +00:00
|
|
|
-> {
|
|
|
|
Object.class_variable_get(invalid_cvar_name)
|
|
|
|
}.should raise_error(NameError) {|e| e.name.should equal(invalid_cvar_name) }
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
end
|