(self)
| 715 | assert collection.subcollection_from_path("build") is build |
| 716 | |
| 717 | def nested_path(self): |
| 718 | collection = Collection.from_module(load("tree")) |
| 719 | docs = collection.collections["build"].collections["docs"] |
| 720 | assert collection.subcollection_from_path("build.docs") is docs |
| 721 | |
| 722 | def invalid_path(self): |
| 723 | # This is really just testing Lexicon/dict behavior but w/e, good |
nothing calls this directly
no test coverage detected