catalog of tests¶ test_failure test_calculator¶ test_addition test_subtraction test_multiplication test_division test_calculator_tests test_telephone¶ test_passing_a_string test_passing_a_class test_passing_none test_passing_a_boolean test_passing_an_integer test_passing_a_float test_passing_a_tuple test_passing_a_list test_passing_a_dictionary test_person_factory¶ test_takes_keyword_arguments test_function_w_default_keyword_arguments test_sleep_duration¶ test_string_splitting test_converting_strings_to_numbers test_floor_aka_integer_division test_the_modulo_operation test_datetime_objects test_get_datetime test_duration_w_hours test_duration_w_hours_and_minutes test_duration_calculation test_duration_w_an_earlier_wake_than_sleep_time test_duration_w_date_and_time test_exceptions¶ test_module_not_found_error test_catching_module_not_found_error_in_tests test_catching_name_error_in_tests test_catching_attribute_error_in_tests test_catching_type_error_in_tests test_catching_index_error_in_tests test_catching_key_error_in_tests test_catching_zero_division_error_in_tests test_catching_exceptions_in_tests test_catching_exceptions_w_messages test_catching_failure test_catching_success test_assertion_error¶ test_assertion_error_w_none test_assertion_error_w_false test_assertion_error_w_true test_assertion_error_w_equality test_attribute_error¶ test_attribute_error_w_variables test_attribute_error_w_functions test_attribute_error_w_class_attributes test_attribute_error_w_class_methods test_type_error¶ test_type_error_w_non_callables test_type_error_w_function_signatures test_type_error_w_objects_that_do_not_mix test_none¶ test_what_is_none test_is_none_a_boolean test_is_none_an_integer test_is_none_a_float test_is_none_a_string test_is_none_a_tuple test_is_none_a_list test_is_none_a_set test_is_none_a_dictionary test_booleans¶ test_what_is_false test_what_is_true test_truth_table¶ test_logical_true test_logical_false test_logical_identity test_logical_negation test_contradiction test_logical_conjunction test_project_second test_converse_non_implication test_negate_first test_logical_nand test_tautology test_logical_disjunction test_exclusive_disjunction test_material_non_implication test_project_first test_converse_implication test_negate_second test_logical_nor test_logical_equality test_material_implication test_lists¶ test_making_a_list test_attributes_and_methods_of_lists test_append_adds_item_to_end_of_a_list test_clear_empties_a_list test_copy_a_list test_count_number_of_times_item_is_in_a_list test_extend_adds_items_from_an_iterable_to_end_of_a_list test_index_returns_first_position_of_item_in_a_list test_insert_item_at_given_index_in_a_list test_pop_removes_and_returns_last_item_from_a_list test_remove_first_instance_of_item_from_a_list test_reverse_a_list test_sort_a_list test_getting_items_of_a_list test_setting_items_in_a_list test_viewing_parts_of_a_list_aka_slicing test_index_error test_list_comprehensions¶ test_making_a_list_w_a_for_loop test_making_a_list_w_extend test_making_a_list_w_a_list_comprehension test_making_a_list_w_conditions test_making_a_list_w_processes test_making_a_list_w_processes_and_conditions test_dictionaries¶ test_making_a_dictionary test_making_a_dictionary_w_none_as_a_key test_making_a_dictionary_w_a_boolean_as_a_key test_making_a_dictionary_w_a_number_as_a_key test_making_a_dictionary_w_a_tuple_as_a_key test_making_a_dictionary_w_a_list_as_a_key test_making_a_dictionary_w_a_set_as_a_key test_making_a_dictionary_w_a_dictionary_as_a_key test_attributes_and_methods_of_dictionaries test_clear_empties_a_dictionary test_copy_a_dictionary test_fromkeys_makes_a_dictionary_from_an_iterable test_get_value_of_a_key_in_a_dictionary test_items_returns_iterable_of_key_value_pairs_of_a_dictionary test_keys_of_a_dictionary test_pop_removes_given_key_from_a_dictionary_and_returns_its_value test_popitem_removes_and_returns_last_key_value_pair_from_a_dictionary test_setdefault_adds_given_key_to_a_dictionary test_update_a_dictionary test_values_of_a_dictionary test_key_error test_functions¶ test_making_a_function_w_pass test_making_a_function_w_return test_making_a_function_w_return_none test_constant_function test_identity_function test_functions_w_positional_arguments test_functions_w_keyword_arguments test_functions_w_positional_and_keyword_arguments test_functions_w_default_arguments test_functions_w_unknown_arguments test_classes¶ test_factory_person_introduction test_factory_person_introduction test_update_factory_person_year_of_birth test_update_classy_person_year_of_birth test_attributes_and_methods_of_classes