221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 | |
def test_build_class_pages_base_link(self): |
self.apb.build_class_pages(['main.SomeSubClass', |
'main.SomeClass']) |
self.linker.replace_dirpath(self.base, False) |
clsfile = self.base.join('api/main.SomeSubClass.html') |
assert clsfile.check() |
html = clsfile.read() |
print html |
run_string_sequence_test(html, [ |
'href="../style.css"', |
'href="main.SomeClass.html">main.SomeClass', |
]) |
-> _checkhtml(html) | |