Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Testing Covering Your Bases Review: Python Testing

I want to make sure than age is always higher than 12. What assertion would I use? self.assert(age, 12)

help

1 Answer

Iain Diamond
Iain Diamond
29,379 Points

Hi,

Here's a simple example of how you might check that age is greater than 12.

import unittest

class Tests(unittest.TestCase):

  def setUp(self):
    self.age = 13

  def test_age(self):
    self.assertGreater(self.age, 12)

if __name__ == "__main__":
  unittest.main()    

Hope this helps, iain