Skip to content

Commit

Permalink
Fix test for windows. Patch by usa from ruby trunk r32670
Browse files Browse the repository at this point in the history
  • Loading branch information
drbrain committed Aug 4, 2011
1 parent e16aae7 commit 5842081
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_rake_directory_task.rb
Expand Up @@ -29,8 +29,9 @@ def test_directory
def test_directory_win32
desc "WIN32 DESC"
directory 'c:/a/b/c'
assert_equal FileCreationTask, Task['c:'].class
assert_equal FileTask, Task['c:'].class
assert_equal FileCreationTask, Task['c:/a'].class
assert_equal FileCreationTask, Task['c:/a/b'].class
assert_equal FileCreationTask, Task['c:/a/b/c'].class
assert_nil Task['c:/'].comment
assert_equal "WIN32 DESC", Task['c:/a/b/c'].comment
Expand Down

0 comments on commit 5842081

Please sign in to comment.