2011-05-31 23:07:20 +02:00
|
|
|
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
2007-03-30 04:36:52 +00:00
|
|
|
|
2009-06-02 21:22:50 +02:00
|
|
|
class DataControllerTest < ActionController::TestCase
|
2007-04-02 04:29:48 +00:00
|
|
|
|
2007-03-30 04:36:52 +00:00
|
|
|
def setup
|
|
|
|
|
end
|
|
|
|
|
|
2007-04-02 04:29:48 +00:00
|
|
|
def test_csv_export_completes_without_error
|
2007-10-09 05:17:28 +00:00
|
|
|
login_as :admin_user
|
2007-04-02 04:29:48 +00:00
|
|
|
get :csv_notes
|
2007-03-30 04:36:52 +00:00
|
|
|
end
|
2009-02-08 15:25:42 +01:00
|
|
|
|
|
|
|
|
def test_yml_export_comleted_without_error
|
|
|
|
|
login_as :admin_user
|
|
|
|
|
get :yaml_export
|
|
|
|
|
end
|
2007-03-30 04:36:52 +00:00
|
|
|
end
|