Update to version 0.4.2
[diaspy.git] / testconf.markdown
1 ## Configuration file for `diaspy` test suite (./tests.py)
2
3 Developer/tester has to create their own `testconf.py` file
4 because it is appended to `.gitignore` to avoid accidental
5 upload of personal data.
6
7
8 #### You have to set the variables yourself!
9 #### Their values have to be valid!
10
11 Template file:
12
13 # Here is a configuration file for test suite for diaspy.
14 # Fill it with correct data.
15 #
16 # Fields are explained in testconf.md file.
17
18
19 # Your login details
20 __pod__ = 'https://pod.example.com'
21 __username__ = 'user'
22 __passwd__ = 'password'
23
24
25 # D* identifiers
26 diaspora_id = 'user@pod.example.com'
27 guid = 'abcdef01234678'
28
29
30 # Details of your account
31 diaspora_name = 'Foo Bar'
32 user_names_tuple = ('Foo', 'Bar')
33 user_email = 'email@example.com'
34 user_location_string = 'Nowhere'
35 user_gender_string = 'Gender'
36 user_date_of_birth = (2013, 9, 7)
37 # remember about language you've set!
38 user_date_of_birth_named = (2013, 'September', 7)
39 user_is_searchable = True
40 user_is_nsfw = False
41 # five tags you use to describe yourself (all in lowercase)
42 user_tags = ['movies', 'kittens', 'travel', 'teacher', 'newyork']
43
44
45 # both names are created
46 test_aspect_name = 'diaspy-test'
47
48 # but this one will be deletd `by name`
49 test_aspect_name_fake = 'diaspy-test-fake'
50
51 # don't change needed for tests to work
52 test_aspect_id = -1