2019-12-18 09:49:57 -06:00
|
|
|
# typed: true
|
2014-05-16 18:03:13 -04:00
|
|
|
require '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
|