Magic numbers are special value of certain variables which causes the program to behave in an special manner. For example, a communication library might take a Timeout parameter and it can define the magic number "-1" for indicating infinite timeout.
With Mock you can mock magic methods but you have to define them. MagicMock has "default implementations of most of the magic methods.". If you don't need to test any magic methods, Mock is adequate and doesn't bring a lot of extraneous things into your tests. If you need to test a lot of magic methods MagicMock will save you some time.
Magic Mushroom Dosage Calculator Roughly estimates a dosage in grams based on the species and potency of the mushroom, whether or not it's dried, and other factors. I wrote this calculator in JavaScript to help figure out how many mushrooms to eat to reach the desired trip strength.