mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-23 07:34:08 +01:00
18 lines
309 B
Ruby
18 lines
309 B
Ruby
# typed: true
|
|
require '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
|