(self)
| 2893 | # implementing our own implementations from scratch. |
| 2894 | |
| 2895 | def test_slots(self): |
| 2896 | nd = self.module.NormalDist(300, 23) |
| 2897 | with self.assertRaises(TypeError): |
| 2898 | vars(nd) |
| 2899 | self.assertEqual(tuple(nd.__slots__), ('_mu', '_sigma')) |
| 2900 | |
| 2901 | def test_instantiation_and_attributes(self): |
| 2902 | nd = self.module.NormalDist(500, 17) |
nothing calls this directly
no test coverage detected