Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixup #634, fixes #647 #648

Merged
merged 2 commits into from
Aug 27, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fixup #634, fixes #647
  • Loading branch information
hsbt committed Aug 27, 2018
commit 03d36a44935d5da8720514204b527be41828c7c4
11 changes: 10 additions & 1 deletion test/test_rdoc_ri_driver.rb
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,16 @@ def test_display_method_overridden
def test_display_name
util_store

assert_equal true, @driver.display_name('home:README.rdoc')
out, = capture_io do
assert_equal true, @driver.display_name('home:README.rdoc')
end

expected = <<-EXPECTED
= README
This is a README
EXPECTED

assert_equal expected, out
end

def test_display_name_not_found_class
Expand Down