constructor tests: create credential files at runtime

pull/109/head
codl 2017-11-27 17:47:15 +01:00
rodzic 14a34396e5
commit e8d1079562
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6CD7C8891ED1233A
3 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -1 +0,0 @@
baz

Wyświetl plik

@ -1,2 +0,0 @@
foo
bar

Wyświetl plik

@ -2,10 +2,14 @@ import pytest
from mastodon import Mastodon
from mastodon.Mastodon import MastodonIllegalArgumentError
def test_constructor_from_filenames():
def test_constructor_from_filenames(tmpdir):
client = tmpdir.join('client')
client.write_text('foo\nbar\n', 'UTF-8')
access = tmpdir.join('access')
access.write_text('baz\n', 'UTF-8')
api = Mastodon(
'tests/client.credentials',
access_token = 'tests/access.credentials')
str(client),
access_token = str(access))
assert api.client_id == 'foo'
assert api.client_secret == 'bar'
assert api.access_token == 'baz'