Skip to content

Commit

Permalink
fix require paths
Browse files Browse the repository at this point in the history
closes heroku#5
  • Loading branch information
geemus committed Mar 9, 2012
1 parent c1bec5b commit bb8e322
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/test_lex.rb
@@ -1,7 +1,7 @@
$VERBOSE = true
require 'test/unit'

require '../netrc/lib/netrc'
require File.expand_path("#{File.dirname(__FILE__)}/../lib/netrc")

class TestLex < Test::Unit::TestCase
def test_lex_empty
Expand Down
2 changes: 1 addition & 1 deletion test/test_netrc.rb
Expand Up @@ -2,7 +2,7 @@
require 'test/unit'
require 'fileutils'

require '../netrc/lib/netrc'
require File.expand_path("#{File.dirname(__FILE__)}/../lib/netrc")

class TestNetrc < Test::Unit::TestCase
def setup
Expand Down
2 changes: 1 addition & 1 deletion test/test_parse.rb
@@ -1,7 +1,7 @@
$VERBOSE = true
require 'test/unit'

require '../netrc/lib/netrc'
require File.expand_path("#{File.dirname(__FILE__)}/../lib/netrc")

class TestParse < Test::Unit::TestCase
def test_parse_empty
Expand Down

0 comments on commit bb8e322

Please sign in to comment.