• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..01-Mar-2022-

functional/H01-Mar-2022-12,87510,701

integration/H01-Mar-2022-10,9868,980

scenarios/H01-Mar-2022-1,9371,543

unit/H01-Mar-2022-88,58574,575

README.mdH A D01-Mar-2022842 1510

__init__.pyH A D01-Mar-20220 10

conftest.pyH A D01-Mar-202214.9 KiB473389

README.md

1# New Test Suite
2
3Welcome to the *new* test suite for Salt!
4
5Any test under this directory shall be written exploring the full capabilities of PyTest.
6That means, no occurrences of the [TestCase](https://docs.python.org/3/library/unittest.html#unittest.TestCase) class
7shall be used, neither our [customizations to it](../support/case.py).
8
9## Purpose
10
11While [PyTest](https://docs.pytest.org) can happily run unittest tests(withough taking advantage of most of PyTest's strengths),
12this new path in the tests directory was created to provide a clear separation between the two approaches to writing tests.
13Some(hopefully all) of the existing unittest tests might get ported to PyTest's style of writing tests, new tests should be added under
14this directory tree, and, in the long run, this directoy shall become the top level tests directoy.
15