Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
A lot of the assertions you'll write in your tests have to do with values. You'll want to assert that something is bigger than 5 or has less than 3 items. Let's look at the assertions provided for comparing against numbers.
New Terms
setUp() - Method that is run before each test. Use this to set up state for the tests
assertEqual(x, y) - Make sure x
and y
are equal
assertNotEqual(x, y) - Make sure x
and y
are not equal
assertGreater(x, y) - Make sure x
is greater than y
assertLess(x, y) - Make sure x
is less than y
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Anwar Rizalman
Python Development Techdegree Graduate 33,620 Points1 Answer
-
sunil shrestha
735 Points1 Answer
-
hamsternation
26,616 Points0 Answers
-
SC3 Rocks
33,474 Points1 Answer
-
Gilang Ilhami
12,045 Points1 Answer
-
Kathryn Klarich
4,622 Points1 Answer
-
Austin Hawkins-Seagram
5,720 Points1 Answer
-
Modou Sawo
13,141 PointsHelp with running Python Testing scripts: "python: can't open file 'tests.py': [Errno 2] No such file or directory "
Posted by Modou SawoModou Sawo
13,141 Points1 Answer
-
peter keves
6,854 Points1 Answer
-
Farrah Dickerson
10,173 Points2 Answers
-
Y B
14,136 PointsWhy do we need assertGreater(x,y) etc... can't we just just assert x>y ?
Posted by Y BY B
14,136 Points2 Answers
-
Edgar Lopez
3,003 Pointsassert x + y == z vs. self.assertEquals(self.instance, self.instance2)
Posted by Edgar LopezEdgar Lopez
3,003 Points3 Answers
-
Welby Obeng
20,340 PointsHow does assertGreater and assertLess know an instance of an object is greater or lesser than the other
Posted by Welby ObengWelby Obeng
20,340 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up