You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Griffin Austin edited this page Oct 14, 2019
·
1 revision
Install using pip:$ pip install pytesting
Create and run a simple test suite
frompytestingimporttesting# Define test suiteclassTestsuite(testing.Test):
deftest_foo(self):
self.assert_equal("foo", 5)
deftest_bar(self):
self.assert_equal(1, 1)
# Create and run test suitetest_suite=Testsuite()
test_suite.run_tests()