Difference between revisions of "Dev Testing"

From Dreamwidth Notes
Jump to: navigation, search
(Link to front-end testing.)
Line 1: Line 1:
To prove all tests:
+
This is mostly for automated back-end testing. For automated testing of front-end or UI components, see [[Using Qunit for testing JS]].
  
 
  cd $LJHOME
 
  cd $LJHOME

Revision as of 20:05, 24 February 2011

This is mostly for automated back-end testing. For automated testing of front-end or UI components, see Using Qunit for testing JS.

cd $LJHOME
prove -r t

To prove a specific test:

cd $LJHOME
prove t/sometest.t

http://dw-dev.dreamwidth.org/20733.html describes more about the tests.

(See also Test process for QA testing, though this is less relevant to most devs)