blob: fea3dad4fdaddb00c5ee35b03418179a484ced9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# frozen_string_literal: true
require 'application_system_test_case'
class ExportsTest < ApplicationSystemTestCase
setup do
sign_in!
end
test 'can access exports from the hidden menu' do
find('#toggle-hidden-global-menu').click
assert_text I18n.t('searches.export.action')
click_on I18n.t('searches.export.action')
assert_text I18n.t('searches.export.note-msg')
assert_equal page.current_path, new_search_exports_path(0)
end
test 'can export using multiple formats' do
visit new_search_exports_path(0)
assert find('#export-format-button')[:href].ends_with?('/searches/0/exports.csv')
find('#export-select-format').select('UOC')
assert find('#export-format-button')[:href].ends_with?('/searches/0/exports.uoc')
end
end
|