salt/tests/pytests
Twangboy 8660718fa7 Add query function, docs
Add query function that accepts XPath queries
Add docs and CLI examples for all functions
Fix issues with the get_filtered function
2022-10-03 14:00:03 -06:00
..
functional Add query function, docs 2022-10-03 14:00:03 -06:00
integration migrate to functional test. 2022-09-30 14:43:22 -07:00
scenarios Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
unit Add query function, docs 2022-10-03 14:00:03 -06:00
__init__.py Pyupgrade and drop six 2021-07-06 09:04:28 -04:00
conftest.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
README.md

New Test Suite

Welcome to the new test suite for Salt!

Any test under this directory shall be written exploring the full capabilities of PyTest. That means, no occurrences of the TestCase class shall be used, neither our customizations to it.

Purpose

While PyTest can happily run unittest tests(withough taking advantage of most of PyTest's strengths), this new path in the tests directory was created to provide a clear separation between the two approaches to writing tests. Some(hopefully all) of the existing unittest tests might get ported to PyTest's style of writing tests, new tests should be added under this directory tree, and, in the long run, this directoy shall become the top level tests directoy.