Conditions | 2 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import pytest |
||
22 | def test_recipe(self): |
||
23 | with TestResources.temp_dir(copy_resource="fake") as path: |
||
24 | # FYI dry run is impossible because of grayskull |
||
25 | context = Context(path, dry_run=True) |
||
26 | lines = Recipe(context).create(path / "recipes") |
||
27 | # TODO totally inadequate coverage |
||
28 | assert len(lines) > 20 |
||
29 | # assert " - pip >=20" in lines |
||
35 |