Skip to content

Commit

Permalink
updated task that check for message
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://rubyforge.org/var/svn/rake/trunk@280 5af023f1-ac1a-0410-98d6-829a145c37ef
  • Loading branch information
jimweirich committed Nov 6, 2004
1 parent 5475ced commit 0d4e402
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions rake/CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
= Rake Changelog

== pre Version 0.4.11

* Changed the "don't know how to rake" message (finally)

== Version 0.4.10

* Added block support to the "sh" command, allowing users to take
Expand Down
2 changes: 1 addition & 1 deletion rake/test/testtasks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_find
task :tfind
assert_equal "tfind", Task[:tfind].name
ex = assert_raises(RuntimeError) { Task[:leaves] }
assert_equal "Don't know how to rake leaves", ex.message
assert_equal "Don't know how to build task 'leaves'", ex.message
end

def test_defined
Expand Down

0 comments on commit 0d4e402

Please sign in to comment.