fixed bug with setting root doc which would fail if the document class isn't on the top line

This commit is contained in:
Henry Oswald
2014-12-01 01:07:03 +00:00
parent 175dfae085
commit a570d05132
2 changed files with 7 additions and 5 deletions
@@ -18,10 +18,10 @@ describe 'ProjectRootDocManager', ->
@docs =
"/chapter1.tex":
_id: "doc-id-1"
lines: ["\\begin{document}", "Hello world", "\\end{document}"]
lines: ["something else","\\begin{document}", "Hello world", "\\end{document}"]
"/main.tex":
_id: "doc-id-2"
lines: ["\\documentclass{article}", "\\input{chapter1}"]
lines: ["different line","\\documentclass{article}", "\\input{chapter1}"]
"/nested/chapter1a.tex":
_id: "doc-id-3"
lines: ["Hello world"]