mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
17 lines
342 B
Ruby
17 lines
342 B
Ruby
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
|
|
|
|
class DataControllerTest < ActionController::TestCase
|
|
|
|
def setup
|
|
end
|
|
|
|
def test_csv_export_completes_without_error
|
|
login_as :admin_user
|
|
get :csv_notes
|
|
end
|
|
|
|
def test_yml_export_comleted_without_error
|
|
login_as :admin_user
|
|
get :yaml_export
|
|
end
|
|
end
|