deb-python-gabbi/test-limit.sh
Chris Dent 4ef93c4b04 Make the test-limit test more robust
It wasn't counting the number of tests and it should to say it
is just running one test.
2015-02-10 17:09:23 +00:00

16 lines
576 B
Bash
Executable File

#!/bin/bash
# Run a test which is limited to just one request from a file that
# contains many requests and confirm that only one was run and that
# it did actually run.
#
# This covers a situation where the change of intercepts to fixtures
# broke limiting tests and we never knew.
GREP_TEST_MATCH='gabbi.driver.test_intercept_self_checklimit.test_request ... ok'
GREP_COUNT_MATCH='Ran 1 '
python setup.py testr --testr-args="checklimit" && \
testr last --subunit | subunit2pyunit 2>&1 | \
grep "${GREP_TEST_MATCH}" && \
testr last | grep "${GREP_COUNT_MATCH}"