File: index.rst

package info (click to toggle)
python-django-waffle 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 684 kB
  • sloc: python: 3,266; makefile: 139; sh: 39; javascript: 34
file content (48 lines) | stat: -rw-r--r-- 1,311 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.. _testing-index:

===================
Testing with Waffle
===================

"Testing" takes on at least two distinct meanings with Waffle:

- Testing your application with automated tools
- Testing your feature with users

For the purposes of this chapter, we'll refer to the former as
"automated testing" and the latter as "user testing" for clarity.

.. toctree::
   :maxdepth: 1

   automated
   user


Automated testing
=================

Automated testing encompasses things like unit and integration tests,
whether they use the Python/Django unittest framework or an external
tool like Selenium.

Waffle is often non-deterministic, i.e. it introduces true randomness to
the system-under-test, which is a nightmare for automated testing. Thus,
Waffle includes tools to re-introduce determinism in automated test
suites.

:ref:`Read more about automated testing <testing-automated>`.


User testing
============

User testing occurs on both a (relatively) large scale with automated
metric collection and on a small, often one-to-one—such as testing
sessions with a user and research or turning on a feature within a
company or team.

Waffle does what it can to support these kinds of tests while still
remaining agnostic about metrics platforms.

:ref:`Read more about user testing <testing-user>`.