Update documentation for negative testing

Since generate_scenario() call is not needed any longer update the
documentation to the current state.

Change-Id: I34e8b974d5c4851a27f53a20778a181985ff6b5b
This commit is contained in:
Marc Koderer 2014-03-26 08:56:59 +01:00
parent b4a9c34f3e
commit 313cbd554d
1 changed files with 4 additions and 3 deletions

View File

@ -120,13 +120,14 @@ These descriptions consists of two important sections for the test
- A json schema: defines properties for a request.
After that a test class must be added to automatically generate test scenarios
out of the given interface description:
out of the given interface description::
load_tests = test.NegativeAutoTest.load_tests
class SampeTestNegativeTestJSON(<your base class>, test.NegativeAutoTest):
_interface = 'json'
_service = 'compute'
_schema_file = 'compute/servers/get_console_output.json'
scenarios = test.NegativeAutoTest.generate_scenario(_schema_file)
_schema_file = <your Schema file>
Negative tests must be marked with a negative attribute::