Unit Testing: Difference between revisions

From WeBWorK_wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:




*Unit testing tutorials
*Unit testing tutorials (Michael Schwern and Andy Lester )


** Andy Lester  http://perlbuzz.com/
** Andy Lester  http://perlbuzz.com/

Revision as of 15:44, 6 June 2011

Create automated tests to insure that WeBWorK is configured and functioning properly.


  • Unit testing tutorials (Michael Schwern and Andy Lester )
    • Test::More
    • Test::Exception
    • Test::HTML::Lint
    • Test::Simple (frame work for creating test modules)
    • Test::Pod
    • Test::LongString
    • WWW::Mechanize
    • Test::File (testing file attributes)
    • Test::Mail (tests programs that send and receive mail)
  • (While not a perl module the Mac program Fake can be used to automate testing of a web site)

Category:Developers