comparison test/unit/.svn/text-base/repository_test.rb.svn-base @ 119:8661b858af72

* Update to Redmine trunk rev 4705
author Chris Cannam
date Thu, 13 Jan 2011 14:12:06 +0000
parents 94944d00e43c
children 07fa8a8b56a8
comparison
equal deleted inserted replaced
39:150ceac17a8d 119:8661b858af72
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.
17 17
18 require File.dirname(__FILE__) + '/../test_helper' 18 require File.expand_path('../../test_helper', __FILE__)
19 19
20 class RepositoryTest < ActiveSupport::TestCase 20 class RepositoryTest < ActiveSupport::TestCase
21 fixtures :projects, 21 fixtures :projects,
22 :trackers, 22 :trackers,
23 :projects_trackers, 23 :projects_trackers,
24 :enabled_modules,
24 :repositories, 25 :repositories,
25 :issues, 26 :issues,
26 :issue_statuses, 27 :issue_statuses,
28 :issue_categories,
27 :changesets, 29 :changesets,
28 :changes, 30 :changes,
29 :users, 31 :users,
32 :members,
33 :member_roles,
34 :roles,
30 :enumerations 35 :enumerations
31 36
32 def setup 37 def setup
33 @repository = Project.find(1).repository 38 @repository = Project.find(1).repository
34 end 39 end