()
| 105 | |
| 106 | @skip_if_no_disutils |
| 107 | def test_entry_points_ini_string(): |
| 108 | # type: () -> None |
| 109 | assert_entry_points( |
| 110 | dedent( |
| 111 | """ |
| 112 | [console_scripts] |
| 113 | my_app=my_app.my_module:do_something |
| 114 | """ |
| 115 | ) |
| 116 | ) |
| 117 | |
| 118 | |
| 119 | @skip_if_no_disutils |
nothing calls this directly
no test coverage detected