##// END OF EJS Templates
remove trailing white-spaces from test/integration/lib/redmine/themes_test.rb....
Toshi MARUYAMA -
r6547:a7a4da4d699c
parent child
Show More
@@ -1,16 +1,16
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2010 Jean-Philippe Lang
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
@@ -19,56 +19,56 require File.expand_path('../../../../test_helper', __FILE__)
19
19
20 class ThemesTest < ActionController::IntegrationTest
20 class ThemesTest < ActionController::IntegrationTest
21 fixtures :all
21 fixtures :all
22
22
23 def setup
23 def setup
24 @theme = Redmine::Themes.themes.last
24 @theme = Redmine::Themes.themes.last
25 Setting.ui_theme = @theme.id
25 Setting.ui_theme = @theme.id
26 end
26 end
27
27
28 def teardown
28 def teardown
29 Setting.ui_theme = ''
29 Setting.ui_theme = ''
30 end
30 end
31
31
32 def test_application_css
32 def test_application_css
33 get '/'
33 get '/'
34
34
35 assert_response :success
35 assert_response :success
36 assert_tag :tag => 'link',
36 assert_tag :tag => 'link',
37 :attributes => {:href => %r{^/themes/#{@theme.dir}/stylesheets/application.css}}
37 :attributes => {:href => %r{^/themes/#{@theme.dir}/stylesheets/application.css}}
38 end
38 end
39
39
40 def test_without_theme_js
40 def test_without_theme_js
41 get '/'
41 get '/'
42
42
43 assert_response :success
43 assert_response :success
44 assert_no_tag :tag => 'script',
44 assert_no_tag :tag => 'script',
45 :attributes => {:src => %r{^/themes/#{@theme.dir}/javascripts/theme.js}}
45 :attributes => {:src => %r{^/themes/#{@theme.dir}/javascripts/theme.js}}
46 end
46 end
47
47
48 def test_with_theme_js
48 def test_with_theme_js
49 # Simulates a theme.js
49 # Simulates a theme.js
50 @theme.javascripts << 'theme'
50 @theme.javascripts << 'theme'
51 get '/'
51 get '/'
52
52
53 assert_response :success
53 assert_response :success
54 assert_tag :tag => 'script',
54 assert_tag :tag => 'script',
55 :attributes => {:src => %r{^/themes/#{@theme.dir}/javascripts/theme.js}}
55 :attributes => {:src => %r{^/themes/#{@theme.dir}/javascripts/theme.js}}
56
56
57 ensure
57 ensure
58 @theme.javascripts.delete 'theme'
58 @theme.javascripts.delete 'theme'
59 end
59 end
60
60
61 def test_with_sub_uri
61 def test_with_sub_uri
62 Redmine::Utils.relative_url_root = '/foo'
62 Redmine::Utils.relative_url_root = '/foo'
63 @theme.javascripts << 'theme'
63 @theme.javascripts << 'theme'
64 get '/'
64 get '/'
65
65
66 assert_response :success
66 assert_response :success
67 assert_tag :tag => 'link',
67 assert_tag :tag => 'link',
68 :attributes => {:href => %r{^/foo/themes/#{@theme.dir}/stylesheets/application.css}}
68 :attributes => {:href => %r{^/foo/themes/#{@theme.dir}/stylesheets/application.css}}
69 assert_tag :tag => 'script',
69 assert_tag :tag => 'script',
70 :attributes => {:src => %r{^/foo/themes/#{@theme.dir}/javascripts/theme.js}}
70 :attributes => {:src => %r{^/foo/themes/#{@theme.dir}/javascripts/theme.js}}
71
71
72 ensure
72 ensure
73 Redmine::Utils.relative_url_root = ''
73 Redmine::Utils.relative_url_root = ''
74 end
74 end
General Comments 0
You need to be logged in to leave comments. Login now