blob: 65e6178e24e518886fcfd11bc7962558a817da5a (
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
31
32
|
import os
from pathlib import Path
try:
import tomllib
except ImportError:
import tomli as tomllib
from shutil import copy
from testpath import assert_isfile
from flit import tomlify
samples_dir = Path(__file__).parent / 'samples'
def test_tomlify(copy_sample, monkeypatch):
td = copy_sample('with_flit_ini')
monkeypatch.chdir(td)
tomlify.main(argv=[])
pyproject_toml = (td / 'pyproject.toml')
assert_isfile(pyproject_toml)
with pyproject_toml.open('rb') as f:
content = tomllib.load(f)
assert 'build-system' in content
assert 'tool' in content
assert 'flit' in content['tool']
flit_table = content['tool']['flit']
assert 'metadata' in flit_table
assert 'scripts' in flit_table
assert 'entrypoints' in flit_table
|