Skip to content

Commit

Permalink
Fix test paths for Ruby 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
marcandre committed Feb 23, 2011
1 parent 8e7a034 commit d4a4352
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ It's easy to make you own classes (un)packable. All the previous goodies are thu
end

=== Filters
It's also easy to define special shortcuts that will call blocks to (un)pack any classe.
It's also easy to define special shortcuts that will call blocks to (un)pack any class.
As an example, this could be useful to add special packing features to String (without monkey patching String::pack).

== Installation
Expand Down
2 changes: 1 addition & 1 deletion test/packing_doc_test.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require File.dirname(__FILE__) + '/test_helper'
require File.expand_path(File.dirname(__FILE__) + '/test_helper')
# Warning: ugly...
class MyHeader < Struct.new(:signature, :nb_blocks)
include Packable
Expand Down
2 changes: 1 addition & 1 deletion test/packing_test.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require File.dirname(__FILE__) + '/test_helper'
require File.expand_path(File.dirname(__FILE__) + '/test_helper')
# Warning: ugly...

class XYZ
Expand Down

0 comments on commit d4a4352

Please sign in to comment.