annotate vendor/plugins/open_id_authentication/test/test_helper.rb @ 586:658cfb481618 feature_36

Order BibTeX entry types in a sensible order for presentation to user, instead of alphabetically by BibTeX name as previously (requires database re-seed). Provide a label for each entry type, and use it in the edit dropdown and show page. Omit duplicate entry type (conference) from edit dropdown. Use existing entry attribute labels in show_bibtex_fields.
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 12 Aug 2011 13:15:05 +0100
parents 513646585e45
children
rev   line source
Chris@0 1 require 'test/unit'
Chris@0 2 require 'rubygems'
Chris@0 3
Chris@0 4 gem 'activesupport'
Chris@0 5 require 'active_support'
Chris@0 6
Chris@0 7 gem 'actionpack'
Chris@0 8 require 'action_controller'
Chris@0 9
Chris@0 10 gem 'mocha'
Chris@0 11 require 'mocha'
Chris@0 12
Chris@0 13 gem 'ruby-openid'
Chris@0 14 require 'openid'
Chris@0 15
Chris@0 16 RAILS_ROOT = File.dirname(__FILE__) unless defined? RAILS_ROOT
Chris@0 17 require File.dirname(__FILE__) + "/../lib/open_id_authentication"