To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / plugins / redmine_bibliography / test / test_helper.rb @ 1580:fa3d9c22497c
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
|