manifesto https://hypothesis.readthedocs.io/en/latest/manifesto.html code https://github.com/HypothesisWorks/hypothesis-python/ doc https://hypothesis.readthedocs.io/en/latest/index.html w/ pytest http://hypothesis.works/articles/hypothesis-pytest-fixtures/ https://developers.redhat.com/blog/2016/06/24/the-hypothesis-testing-library-for-python-an-introduction/
VirtualTam's bookmarks
-
2016-11-20 -
2016-10-04 -
2016-08-16 QA Engineer walks into a bar. Orders a beer. Orders 0 beers. Orders 999999999 beers. Orders a lizard. Orders -1 beers. Orders a sfdeljknesv.
via https://github.com/minimaxir/big-list-of-naughty-strings via https://www.sempf.net/post/On-Testing1.aspx
-
- https://wiki.linaro.org/LAVA
- https://wiki.debian.org/LAVA
- https://lava.debian.net/
- https://lava.debian.net/static/docs/v2/index.html
- https://validation.linaro.org/static/docs/v2/first-installation.html
- https://validation.linaro.org/static/docs/v2/pipeline-admin.html
- https://validation.linaro.org/static/docs/v2/development-intro.html
- https://www.linaro.org/blog/lava-blog/lava-fundamentals/
- https://git.linaro.org/?s=lava%2Flava
-
2016-07-06 Behaviour-driven development test framework for Python
-
2016-05-01 -
2016-01-08 -
- Original sources: https://bitbucket.org/BruceEckel/python-3-patterns-idioms
- Forked sources: https://bitbucket.org/MatToufoutu/python-3-patterns-idioms/src
- ReadTheDocs Fork: http://python-3-patterns-idioms-test.readthedocs.org/en/latest/index.html
-
2015-09-17 Make continuous deployment safe by comparing before and after webpage screenshots for each release.
-
Pro: no need to setup a DNS server to test virtualhosts Con: keep in mind that all "fake" hosts will point to 127.0.0.1!
- Use /etc/hosts to declare test hosts / domains / subdomains
#<ip-address> <hostname.domain.org> <hostname> 127.0.0.1 localhost.localdomain localhost 127.0.0.1 host.localdomain host 127.0.0.1 sub.host.localdomain sub.host ::1 localhost.localdomain localhost
- Allow per-user virtualhost definition in either (depending on your distro)
/etc/httpd/conf/httpd.conf
/etc/apache2/apache2.conf
Include
/home/albert/.httpd/*.conf
- Profit! Create virtualhosts with local hostnames :)
-
2015-05-12 -
2015-05-10 - Test first! Test first!
-
2015-05-10 -
2015-03-17 How to test a private or protected method with PHPUnit?
see also: https://sebastian-bergmann.de/archives/881-Testing-Your-Privates.html