Return True if the file at `path` is a community file.
(path)
| 142 | |
| 143 | |
| 144 | def check_is_path_community_file(path): |
| 145 | """ |
| 146 | Return True if the file at `path` is a community file. |
| 147 | """ |
| 148 | name = file_name(path, force_posix=True) |
| 149 | base_name = file_base_name(path, force_posix=True) |
| 150 | return check_is_community_file(name) or check_is_community_file(base_name) |
| 151 | |
| 152 | |
| 153 | def check_resource_name_start_and_end(resource, STARTS_ENDS): |
no test coverage detected