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 / plugins / redmine_bibliography / test / test_helper.rb @ 1583:0dcd4f8c2b8a

History | View | Annotate | Download (629 Bytes)

1
ENV['RAILS_ENV'] ||= 'test'
2

    
3
# Load the normal Rails helper
4
require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')
5
require File.expand_path(File.dirname(__FILE__) + '/../app/controllers/publications_controller')
6

    
7
class BibliographyControllerTest < ActionController::TestCase
8
  self.fixture_path = File.dirname(__FILE__) + "/fixtures/"
9

    
10
  fixtures :authors
11

    
12
  def setup
13

    
14
  end
15

    
16
  def test_truth
17
    assert true
18
  end
19

    
20
  # def test_routing
21
  #   assert_routing(
22
  #         {:method => :get, :path => '/requirements'},
23
  #         :controller => 'requirements', :action => 'index'
24
  #       )
25
  # end
26

    
27
end