summaryrefslogtreecommitdiffstats
path: root/test/integration/layout_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-04-08 20:06:53 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-04-08 20:06:53 +0000
commitd2cb9d5289e485a77a40899a43a2283ace7c957e (patch)
tree8153b475f3fa555d615c246779110a443ced1197 /test/integration/layout_test.rb
parentd427d8e5675ca21da25f8fefce6b8c2156f3b3d8 (diff)
downloadredmine-d2cb9d5289e485a77a40899a43a2283ace7c957e.tar.gz
redmine-d2cb9d5289e485a77a40899a43a2283ace7c957e.zip
Adds missing route to project search.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9371 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/layout_test.rb')
-rw-r--r--test/integration/layout_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/integration/layout_test.rb b/test/integration/layout_test.rb
index 853bfea4a..682b9bee5 100644
--- a/test/integration/layout_test.rb
+++ b/test/integration/layout_test.rb
@@ -53,4 +53,14 @@ class LayoutTest < ActionController::IntegrationTest
:attributes => {:src => %r{^/javascripts/jstoolbar/textile.js}},
:parent => {:tag => 'head'}
end
+
+ def test_search_field_outside_project_should_link_to_global_search
+ get '/'
+ assert_select 'div#quick-search form[action=/search]'
+ end
+
+ def test_search_field_inside_project_should_link_to_project_search
+ get '/projects/ecookbook'
+ assert_select 'div#quick-search form[action=/projects/ecookbook/search]'
+ end
end