From 2387b4e9f84c9b9225a7ca4d6dbc3b4806b26951 Mon Sep 17 00:00:00 2001 From: Aoran Zeng Date: Wed, 16 Jul 2025 11:19:18 +0800 Subject: [PATCH] Remove fixtures prefix --- tool/rawstr4c/test/fixture/{test-escape.md => escape.md} | 0 tool/rawstr4c/test/fixture/{test-hex.md => hex.md} | 0 .../{test-hierarchy-with-root.md => hierarchy-with-root.md} | 0 ...st-hierarchy-without-root.md => hierarchy-without-root.md} | 0 .../fixture/{test-inherited-config.md => inherited-config.md} | 0 tool/rawstr4c/test/test-parser.rakutest | 4 ++-- 6 files changed, 2 insertions(+), 2 deletions(-) rename tool/rawstr4c/test/fixture/{test-escape.md => escape.md} (100%) rename tool/rawstr4c/test/fixture/{test-hex.md => hex.md} (100%) rename tool/rawstr4c/test/fixture/{test-hierarchy-with-root.md => hierarchy-with-root.md} (100%) rename tool/rawstr4c/test/fixture/{test-hierarchy-without-root.md => hierarchy-without-root.md} (100%) rename tool/rawstr4c/test/fixture/{test-inherited-config.md => inherited-config.md} (100%) diff --git a/tool/rawstr4c/test/fixture/test-escape.md b/tool/rawstr4c/test/fixture/escape.md similarity index 100% rename from tool/rawstr4c/test/fixture/test-escape.md rename to tool/rawstr4c/test/fixture/escape.md diff --git a/tool/rawstr4c/test/fixture/test-hex.md b/tool/rawstr4c/test/fixture/hex.md similarity index 100% rename from tool/rawstr4c/test/fixture/test-hex.md rename to tool/rawstr4c/test/fixture/hex.md diff --git a/tool/rawstr4c/test/fixture/test-hierarchy-with-root.md b/tool/rawstr4c/test/fixture/hierarchy-with-root.md similarity index 100% rename from tool/rawstr4c/test/fixture/test-hierarchy-with-root.md rename to tool/rawstr4c/test/fixture/hierarchy-with-root.md diff --git a/tool/rawstr4c/test/fixture/test-hierarchy-without-root.md b/tool/rawstr4c/test/fixture/hierarchy-without-root.md similarity index 100% rename from tool/rawstr4c/test/fixture/test-hierarchy-without-root.md rename to tool/rawstr4c/test/fixture/hierarchy-without-root.md diff --git a/tool/rawstr4c/test/fixture/test-inherited-config.md b/tool/rawstr4c/test/fixture/inherited-config.md similarity index 100% rename from tool/rawstr4c/test/fixture/test-inherited-config.md rename to tool/rawstr4c/test/fixture/inherited-config.md diff --git a/tool/rawstr4c/test/test-parser.rakutest b/tool/rawstr4c/test/test-parser.rakutest index 9dfe541..91a6a3d 100644 --- a/tool/rawstr4c/test/test-parser.rakutest +++ b/tool/rawstr4c/test/test-parser.rakutest @@ -11,8 +11,8 @@ use lib '../lib'; use Parser; -my $test-file1 = './fixture/test-hierarchy-with-root.md'; -my $test-file2 = './fixture/test-hierarchy-without-root.md'; +my $test-file1 = './fixture/hierarchy-with-root.md'; +my $test-file2 = './fixture/hierarchy-without-root.md'; my $parser1 = Parser::Parser.new($test-file1); my $parser2 = Parser::Parser.new($test-file2);