Modules and Packages Flashcards

1
Q

Package

A

A package is a collection of Python modules that are related to each other

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Version

A

A state of software, with its code and dependencies at a specific time. Usually identified with numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Release

A

A distribution of a new version of a package

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Automated Test

A

Automated Test Scripts that test specific code for correct functionality

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Unit Test

A

Scripts designed to test the performance of a single function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Assertion

A

A statement that somethng is true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Assert

A

Stating that something is true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is an automated test?

A

it’s a test you write to check to see if your code works. A unit test tests the performance of a single function.
These tests keep your code simple so you aren’t doing extra stuff - just trying to pass the test.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Why are unit tests useful?

A

Tests all possible outcomes from a function, helps with scalability, improves collaboration, improves refactoring

How well did you know this?
1
Not at all
2
3
4
5
Perfectly