Skip to main content

a new-style testing library

Project description

Oktest.py is a new-style testing library for Python.

from oktest import test, ok, NG

class FooTest(unittest.TestCase):

   @test("1 + 1 should be 2")
   def _(self):
      ok (1+1) == 2          # same as assertEqual(2, 1+1)

   @test("other examples")
   def _(self):
      ok (s) == 'foo'        # same as assertEqual(s, 'foo')
      ok (s) != 'foo'        # same as assertNotEqual(s, 'foo')
      ok (n) > 0             # same as assertTrue(n > 0)
      ok (fn).raises(Error)  # same as assertRaises(Error, fn)
      ok ([]).is_a(list)     # same as assertTrue(isinstance([], list))
      NG ([]).is_a(tuple)    # same as assertTrue(not isinstance([], tuple))
      ok ('A.txt').is_file() # same as assertTrue(os.path.isfile('A.txt'))
      NG ('A.txt').is_dir()  # same as assertTrue(not os.path.isdir('A.txt'))

Features:

  • ok() is provided which is much shorter than self.assertXxxx().

  • Allow to write test name in free text.

  • Fixture injection support.

  • Tracer class is provided which can be used as mock or stub.

  • Text diff (diff -u) is displayed when texts are different.

Oktest requires Python 2.4 or later (3.x is supported).

See User’s Guide and CHANGES.txt for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Oktest-0.15.2.tar.gz (97.8 kB view details)

Uploaded Source

File details

Details for the file Oktest-0.15.2.tar.gz.

File metadata

  • Download URL: Oktest-0.15.2.tar.gz
  • Upload date:
  • Size: 97.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Oktest-0.15.2.tar.gz
Algorithm Hash digest
SHA256 5520c5ceb7a8e0d5fd7422e1a03580657849aee06ef8a85b03744e761d0751b5
MD5 d8fa2fc28f040fd392c179b4f19629c9
BLAKE2b-256 83fa7be008edf000279b642fbb09695a50b8258a8c1549852e6ee4cf22006b09

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page