To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 33 / 3370cd22f75e851f0796f6234d205c9ce519841c.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (2.46 KB)

1 1296:038ba2d95de8 Chris
# Redmine - project management software
2
# Copyright (C) 2006-2012  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
           :workflows
34
35
  def setup
36
    super
37
    set_language_if_valid('en')
38
    User.current = nil
39
  end
40
41
  def test_link_to_version_within_project
42
    @project = Project.find(2)
43
    User.current = User.find(1)
44
    assert_equal '<a href="/versions/5">Alpha</a>', link_to_version(Version.find(5))
45
  end
46
47
  def test_link_to_version
48
    User.current = User.find(1)
49
    assert_equal '<a href="/versions/5">OnlineStore - Alpha</a>', link_to_version(Version.find(5))
50
  end
51
52
  def test_link_to_private_version
53
    assert_equal 'OnlineStore - Alpha', link_to_version(Version.find(5))
54
  end
55
56
  def test_link_to_version_invalid_version
57
    assert_equal '', link_to_version(Object)
58
  end
59
60
  def test_format_version_name_within_project
61
    @project = Project.find(1)
62
    assert_equal "0.1", format_version_name(Version.find(1))
63
  end
64
65
  def test_format_version_name
66
    assert_equal "eCookbook - 0.1", format_version_name(Version.find(1))
67
  end
68
69
  def test_format_version_name_for_system_version
70
    assert_equal "OnlineStore - Systemwide visible version", format_version_name(Version.find(7))
71
  end
72
73
  def test_version_options_for_select_with_no_versions
74
    assert_equal '', version_options_for_select([])
75
    assert_equal '', version_options_for_select([], Version.find(1))
76
  end
77
end