summaryrefslogtreecommitdiff
path: root/test/rdoc/test_rdoc_markup_raw.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2025-01-15 11:52:40 +0900
committerHiroshi SHIBATA <[email protected]>2025-01-15 16:52:56 +0900
commit86d871d29cda15810d9d60dc1b94a07e9530e0cb (patch)
treeae0fd977690197a4c82eed861527c109caade4f1 /test/rdoc/test_rdoc_markup_raw.rb
parente0be1b902549f80fcdc95e801d4d533b0fdec43b (diff)
Migrate rdoc as bundled gems
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12577
Diffstat (limited to 'test/rdoc/test_rdoc_markup_raw.rb')
-rw-r--r--test/rdoc/test_rdoc_markup_raw.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/rdoc/test_rdoc_markup_raw.rb b/test/rdoc/test_rdoc_markup_raw.rb
deleted file mode 100644
index 52887e6f6c..0000000000
--- a/test/rdoc/test_rdoc_markup_raw.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-require_relative 'helper'
-
-class TestRDocMarkupRaw < RDoc::TestCase
-
- def setup
- super
-
- @p = @RM::Raw.new
- end
-
- def test_push
- @p.push 'hi', 'there'
-
- assert_equal @RM::Raw.new('hi', 'there'), @p
- end
-
- def test_pretty_print
- assert_equal '[raw: ]', mu_pp(@p)
- end
-
-end