Mercurial > hg > soundsoftware-site
comparison .svn/pristine/9f/9fe49ff20a0c8ecd14e659372d7a203dcafd42f7.svn-base @ 1298:4f746d8966dd redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:28:30 +0100 |
parents | 622f24f53b42 |
children |
comparison
equal
deleted
inserted
replaced
1297:0a574315af3e | 1298:4f746d8966dd |
---|---|
1 # Redmine - project management software | |
2 # Copyright (C) 2006-2013 Jean-Philippe Lang | |
3 # | |
4 # This program is free software; you can redistribute it and/or | |
5 # modify it under the terms of the GNU General Public License | |
6 # as published by the Free Software Foundation; either version 2 | |
7 # of the License, or (at your option) any later version. | |
8 # | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU General Public License for more details. | |
13 # | |
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 | |
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
17 | |
18 require File.expand_path('../../../test_helper', __FILE__) | |
19 | |
20 class ProjectsHelperTest < ActionView::TestCase | |
21 include ApplicationHelper | |
22 include ProjectsHelper | |
23 include ERB::Util | |
24 | |
25 fixtures :projects, :trackers, :issue_statuses, :issues, | |
26 :enumerations, :users, :issue_categories, | |
27 :versions, | |
28 :projects_trackers, | |
29 :member_roles, | |
30 :members, | |
31 :groups_users, | |
32 :enabled_modules | |
33 | |
34 def setup | |
35 super | |
36 set_language_if_valid('en') | |
37 User.current = nil | |
38 end | |
39 | |
40 def test_link_to_version_within_project | |
41 @project = Project.find(2) | |
42 User.current = User.find(1) | |
43 assert_equal '<a href="/versions/5">Alpha</a>', link_to_version(Version.find(5)) | |
44 end | |
45 | |
46 def test_link_to_version | |
47 User.current = User.find(1) | |
48 assert_equal '<a href="/versions/5">OnlineStore - Alpha</a>', link_to_version(Version.find(5)) | |
49 end | |
50 | |
51 def test_link_to_private_version | |
52 assert_equal 'OnlineStore - Alpha', link_to_version(Version.find(5)) | |
53 end | |
54 | |
55 def test_link_to_version_invalid_version | |
56 assert_equal '', link_to_version(Object) | |
57 end | |
58 | |
59 def test_format_version_name_within_project | |
60 @project = Project.find(1) | |
61 assert_equal "0.1", format_version_name(Version.find(1)) | |
62 end | |
63 | |
64 def test_format_version_name | |
65 assert_equal "eCookbook - 0.1", format_version_name(Version.find(1)) | |
66 end | |
67 | |
68 def test_format_version_name_for_system_version | |
69 assert_equal "OnlineStore - Systemwide visible version", format_version_name(Version.find(7)) | |
70 end | |
71 | |
72 def test_version_options_for_select_with_no_versions | |
73 assert_equal '', version_options_for_select([]) | |
74 assert_equal '', version_options_for_select([], Version.find(1)) | |
75 end | |
76 end |