Welcome to mirror list, hosted at ThFree Co, Russian Federation.

doc_helper_test.rb « helpers « unit « test - github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f6201004106343012e71c9b533f14f7d3ea23e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require "test_helper"

class DocHelperTest < ActionView::TestCase

  test "should generate man link" do
    src = man("git-rebase")
    assert_equal '<a href="/docs/git-rebase">rebase</a>', src
  end

end