-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
require 'spec_helper' | ||
|
||
RSpec.describe "Document order in the result", :type => :aruba do | ||
include_context "messages" | ||
include_context "texmf" | ||
|
||
context "for documents with different scores" do | ||
before(:each) { run_texdoc "-lM", "babel" } | ||
|
||
let(:res_list_head) do | ||
<<~EXPECTED | ||
babel\t7.0\t#{normalize_path(texmf_dist / "doc/latex/babel/babel.pdf")}\t\tUser guide | ||
babel\t4.0\t#{normalize_path(texmf_dist / "doc/latex/babel/babel-code.pdf")}\t\tCode documentation | ||
EXPECTED | ||
end | ||
|
||
it "should be ordered by the scores" do | ||
expect(stdout).to start_with(res_list_head) | ||
end | ||
end | ||
|
||
context "for documents with the same scores and different extentions" do | ||
before(:each) { run_texdoc "-lM", "texlive-en" } | ||
|
||
let(:res_list_head) do | ||
<<~EXPECTED | ||
texlive-en\t10.0\t#{normalize_path(texmf_dist / "doc/texlive/texlive-en/texlive-en.pdf")}\t\t | ||
texlive-en\t10.0\t#{normalize_path(texmf_dist / "doc/texlive/texlive-en/texlive-en.html")}\t\t | ||
EXPECTED | ||
end | ||
|
||
it "should be ordered by the extention position" do | ||
expect(stdout).to start_with(res_list_head) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters