view plugins/redmine_bibliography/test/functional/authors_controller_test.rb @ 1370:0b169a5e3837 bibliography_testing

Copied the user test fixtures to the plugin test folder; tests are now running.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 21 Aug 2013 18:57:34 +0100
parents b4b72f1eb644
children a8d468e143f7
line wrap: on
line source
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')

class AuthorsControllerTest < ActionController::TestCase
  self.fixture_path = File.dirname(__FILE__) + "/../fixtures/"
  fixtures :users, :authors

  def test_users_authors_relationship
    assert Author.first.user.name == "redMine Admin"
  end

end