From 97f83c0e31d0ce708d681598e892b97435943bc7 Mon Sep 17 00:00:00 2001 From: quix Date: Wed, 24 Sep 2008 23:56:13 -0400 Subject: [PATCH] fix have_rakefile test (case-sensitivity) --- test/test_application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_application.rb b/test/test_application.rb index aa897d618..6a779c033 100644 --- a/test/test_application.rb +++ b/test/test_application.rb @@ -109,7 +109,7 @@ def test_display_tasks_with_full_descriptions end def test_finding_rakefile - assert_equal "rakefile", @app.instance_eval { have_rakefile } + assert_equal "Rakefile", @app.instance_eval { have_rakefile } end def test_not_finding_rakefile