(self)
| 221 | |
| 222 | @socket_helper.skip_unless_bind_unix_socket |
| 223 | def test_socket(self): |
| 224 | with socket.socket(socket.AF_UNIX) as s: |
| 225 | s.bind(TESTFN) |
| 226 | st_mode, modestr = self.get_mode() |
| 227 | self.assertEqual(modestr[0], 's') |
| 228 | self.assertS_IS("SOCK", st_mode) |
| 229 | |
| 230 | def test_module_attributes(self): |
| 231 | for key, value in self.stat_struct.items(): |
nothing calls this directly
no test coverage detected