Skip to content

Commit

Permalink
Specs where failing to load spec_helper.rb on Ruby 1.9.2 as '.' is no…
Browse files Browse the repository at this point in the history
… longer in the load path by default
  • Loading branch information
luma committed Nov 2, 2010
1 parent 2fde207 commit a3fa2ed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion spec/patron_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
## THE SOFTWARE.
##
## -------------------------------------------------------------------
require File.dirname(__FILE__) + '/spec_helper.rb'
require File.expand_path("./spec") + '/spec_helper.rb'

describe Patron do

Expand Down
2 changes: 1 addition & 1 deletion spec/request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
## THE SOFTWARE.
##
## -------------------------------------------------------------------
require File.dirname(__FILE__) + '/spec_helper.rb'
require File.expand_path("./spec") + '/spec_helper.rb'


describe Patron::Request do
Expand Down
2 changes: 1 addition & 1 deletion spec/response_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
## THE SOFTWARE.
##
## -------------------------------------------------------------------
require File.dirname(__FILE__) + '/spec_helper.rb'
require File.expand_path("./spec") + '/spec_helper.rb'
require 'webrick'
require 'base64'
require 'fileutils'
Expand Down
2 changes: 1 addition & 1 deletion spec/session_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
## THE SOFTWARE.
##
## -------------------------------------------------------------------
require File.dirname(__FILE__) + '/spec_helper.rb'
require File.expand_path("./spec") + '/spec_helper.rb'
require 'webrick'
require 'base64'
require 'fileutils'
Expand Down

0 comments on commit a3fa2ed

Please sign in to comment.