summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-05 01:57:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-05 01:57:27 +0000
commitbd9bc1dbe51b93db0447ab06b68761fa4b3768e6 (patch)
treee0841713ae1a6bd16e3a8c872da9ac889e81f5ce
parentec7ee438ac2821a7b1177aab121caa7ab77bc404 (diff)
required paths are real paths
Fix `test-spec` failures when the build directory is a symbolic link. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--spec/ruby/core/method/source_location_spec.rb2
-rw-r--r--spec/ruby/core/proc/source_location_spec.rb8
-rw-r--r--spec/ruby/core/unboundmethod/source_location_spec.rb2
3 files changed, 6 insertions, 6 deletions
diff --git a/spec/ruby/core/method/source_location_spec.rb b/spec/ruby/core/method/source_location_spec.rb
index a955b94f36..dd81b02c77 100644
--- a/spec/ruby/core/method/source_location_spec.rb
+++ b/spec/ruby/core/method/source_location_spec.rb
@@ -13,7 +13,7 @@ describe "Method#source_location" do
it "sets the first value to the path of the file in which the method was defined" do
file = @method.source_location.first
file.should be_an_instance_of(String)
- file.should == File.dirname(__FILE__) + '/fixtures/classes.rb'
+ file.should == File.realpath('../fixtures/classes.rb', __FILE__)
end
it "sets the last value to a Fixnum representing the line on which the method was defined" do
diff --git a/spec/ruby/core/proc/source_location_spec.rb b/spec/ruby/core/proc/source_location_spec.rb
index 77a829335a..772ca7876d 100644
--- a/spec/ruby/core/proc/source_location_spec.rb
+++ b/spec/ruby/core/proc/source_location_spec.rb
@@ -19,19 +19,19 @@ describe "Proc#source_location" do
it "sets the first value to the path of the file in which the proc was defined" do
file = @proc.source_location.first
file.should be_an_instance_of(String)
- file.should == File.dirname(__FILE__) + '/fixtures/source_location.rb'
+ file.should == File.realpath('../fixtures/source_location.rb', __FILE__)
file = @proc_new.source_location.first
file.should be_an_instance_of(String)
- file.should == File.dirname(__FILE__) + '/fixtures/source_location.rb'
+ file.should == File.realpath('../fixtures/source_location.rb', __FILE__)
file = @lambda.source_location.first
file.should be_an_instance_of(String)
- file.should == File.dirname(__FILE__) + '/fixtures/source_location.rb'
+ file.should == File.realpath('../fixtures/source_location.rb', __FILE__)
file = @method.source_location.first
file.should be_an_instance_of(String)
- file.should == File.dirname(__FILE__) + '/fixtures/source_location.rb'
+ file.should == File.realpath('../fixtures/source_location.rb', __FILE__)
end
it "sets the last value to a Fixnum representing the line on which the proc was defined" do
diff --git a/spec/ruby/core/unboundmethod/source_location_spec.rb b/spec/ruby/core/unboundmethod/source_location_spec.rb
index 60047787db..b5e6413816 100644
--- a/spec/ruby/core/unboundmethod/source_location_spec.rb
+++ b/spec/ruby/core/unboundmethod/source_location_spec.rb
@@ -9,7 +9,7 @@ describe "UnboundMethod#source_location" do
it "sets the first value to the path of the file in which the method was defined" do
file = @method.source_location.first
file.should be_an_instance_of(String)
- file.should == File.dirname(__FILE__) + '/fixtures/classes.rb'
+ file.should == File.realpath('../fixtures/classes.rb', __FILE__)
end
it "sets the last value to a Fixnum representing the line on which the method was defined" do