VirtualTam's bookmarks
10 bookmarks found
Page 1 of 1
-
Hashrust - A guide to closures in Rust
2023-07-22 -
Elm at Rakuten | Rakuten Engineering Blog
2021-08-19 -
Racket - solve problems ยท make languages
2018-10-25 -
Obey the testing goat...
2015-05-10 - Test first! Test first!
-
Practical Common Lisp
2015-02-13 Beware! Very cool book dealing with Lisp programming, with plenty of examples
-
Python: run specific unit tests
2015-02-13 Given your unittests are in the
tests
directory:1# run a specific test module 2python -m unittest tests.<module> 3 4# run a specific test suite 5python -m unittest tests.<module>.<class> 6 7# run a specific test 8python -m unittest tests.<module>.<class>.<test> 9 10# run tests matching a given pattern 11python -m unittest discover -s tests -p <pattern>
Page 1 of 1