Commit de600f00 by Michael DeHaan

Move integration tests into tests_new.

parent 876da62f
Legacy tests
============
These tests are active but are being refactored.
See 'new_tests' directory for what will soon replace them.
......@@ -6,17 +6,23 @@ Folders
unit
----
New and approved unit tests, that test small pieces of code not suited for the integration test layer
Unit tests that test small pieces of code not suited for the integration test layer, usually very API based, and should leverage
mock interfaces rather than producing side effects.
Not yet ready for pull requests. Opening this up soon.
Playbook engine code is better suited for integration tests.
integration
-----------
New integration test layer, constructed using playbooks.
Integration test layer, constructed using playbooks.
Not yet ready for pull requests. Opening this up soon.
Some tests may require cloud credentials, others will not, and destructive tests will be seperated from non-destructive so a subset
Some tests may require cloud credentials, others will not, and destructive tests are seperated from non-destructive so a subset
can be run on development machines.
learn more
----------
hop into a subdirectory and see the associated README.md for more info.
......@@ -60,7 +60,6 @@ fileglob = []
There are also various string operations that work on paths. These do not require
files to exist and are passthrus to the python os.path functions
'~/foo' with expanduser = /root/foo
/etc/motd with basename = motd
/etc/motd with dirname = /etc
......
......@@ -47,7 +47,6 @@ fileglob = {{ (output_dir + '/*') | fileglob }}
There are also various string operations that work on paths. These do not require
files to exist and are passthrus to the python os.path functions
'~/foo' with expanduser = {{ '~/foo' | expanduser }}
/etc/motd with basename = {{ '/etc/motd' | basename }}
/etc/motd with dirname = {{ '/etc/motd' | dirname }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment