File: test_cyrilic_client_it.py

package info (click to toggle)
python-webdavclient 3.14.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 644 kB
  • sloc: python: 2,241; xml: 535; makefile: 5; sh: 3
file content (24 lines) | stat: -rw-r--r-- 927 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
import unittest

from tests.test_client_it import ClientTestCase


class MultiClientTestCase(ClientTestCase):
    remote_path_file = 'директория/тестовый.txt'
    remote_path_file2 = 'директория/тестовый2.txt'
    remote_compressed_path_file = 'директория/сжатый.txt'
    remote_inner_path_file = 'директория/вложенная/тестовый.txt'
    remote_path_dir = 'директория'
    remote_path_dir2 = 'директория2'
    remote_inner_path_dir = 'директория/вложенная'
    inner_dir_name = 'вложенная'
    local_base_dir = 'tests/'
    local_file = 'тестовый.txt'
    local_file_path = local_base_dir + 'тестовый.txt'
    local_path_dir = local_base_dir + 'res/директория'
    pulled_file = local_path_dir + os.sep + local_file


if __name__ == '__main__':
    unittest.main()