added Rmd-Support, tests subsumised under md

This commit is contained in:
Max Brede 2023-03-23 14:22:28 +01:00
parent dab20df5f2
commit 903c9cdf92
4 changed files with 53 additions and 34 deletions

View File

@ -430,7 +430,7 @@
] ]
}, },
{ {
"language": "Rmarkdown", "language": "RMarkdown",
"markers": [ "markers": [
{ {
"type": "block", "type": "block",

View File

@ -240,18 +240,6 @@ index 525e25d..ba4e68d 100644
- kept together as one todo - kept together as one todo
- */} - */}
- - [ ] TODO: An inline todo that's NOT a comment (what) - - [ ] TODO: An inline todo that's NOT a comment (what)
diff --git a/tests/example_file.md b/src/tests/example_file.rmd
index 525e25d..ba4e68d 100644
--- a/src/tests/example_file.rmd
+++ b/src/tests/example_file.rmd
@@ -1,7 +0,0 @@
- {/* TODO: Hopefully this comment turns into a todo issue */}
- {/*
- TODO:Multiline comments
- also need to be turned into todos, and hopefully
- kept together as one todo
- */}
- - [ ] TODO: An inline todo that's NOT a comment (what)
diff --git a/tests/example_file.mdx b/src/tests/example_file.mdx diff --git a/tests/example_file.mdx b/src/tests/example_file.mdx
index 525e25d..ba4e68d 100644 index 525e25d..ba4e68d 100644
--- a/src/tests/example_file.mdx --- a/src/tests/example_file.mdx
@ -277,6 +265,30 @@ hello_world <- function() {
- # This function should probably do something more interesting - # This function should probably do something more interesting
- # labels: help wanted - # labels: help wanted
} }
diff --git a/tests/example_file.rmd b/src/tests/example_file.rmd
index 525e25d..ba4e68d 100644
--- a/src/tests/example_file.rmd
+++ b/src/tests/example_file.rmd
@@ -1,7 +0,0 @@
- {/* TODO: Hopefully this comment turns into a todo issue */}
- {/*
- TODO:Multiline comments
- also need to be turned into todos, and hopefully
- kept together as one todo
- */}
- - [ ] TODO: An inline todo that's NOT a comment (what)
diff --git a/tests/example_file.qmd b/src/tests/example_file.qmd
index 525e25d..ba4e68d 100644
--- a/src/tests/example_file.qmd
+++ b/src/tests/example_file.qmd
@@ -1,7 +0,0 @@
- {/* TODO: Hopefully this comment turns into a todo issue */}
- {/*
- TODO:Multiline comments
- also need to be turned into todos, and hopefully
- kept together as one todo
- */}
- - [ ] TODO: An inline todo that's NOT a comment (what)
diff --git a/src/Swarm/Game/example.hs b/src/Swarm/Game/example.hs diff --git a/src/Swarm/Game/example.hs b/src/Swarm/Game/example.hs
index 525e25d..ba4e68d 100644 index 525e25d..ba4e68d 100644
--- a/src/Swarm/Game/example.hs --- a/src/Swarm/Game/example.hs

View File

@ -279,19 +279,6 @@ index 0000000..7cccc5b
+ kept together as one todo + kept together as one todo
+ */} + */}
+ - [ ] TODO: An inline todo that's NOT a comment (what) + - [ ] TODO: An inline todo that's NOT a comment (what)
diff --git a/tests/example_file.rmd b/src/tests/example_file.rmd
new file mode 100644
index 0000000..7cccc5b
--- /dev/null
+++ b/src/tests/example_file.rmd
@@ -0,0 +1,7 @@
+ {/* TODO: Hopefully this comment turns into a todo issue */}
+ {/*
+ TODO:Multiline comments
+ also need to be turned into todos, and hopefully
+ kept together as one todo
+ */}
+ - [ ] TODO: An inline todo that's NOT a comment (what)
diff --git a/tests/example_file.mdx b/src/tests/example_file.mdx diff --git a/tests/example_file.mdx b/src/tests/example_file.mdx
new file mode 100644 new file mode 100644
index 0000000..7cccc5b index 0000000..7cccc5b
@ -319,6 +306,32 @@ index 0000000..525e25d
+ # This function should probably do something more interesting + # This function should probably do something more interesting
+ # labels: help wanted + # labels: help wanted
+} +}
diff --git a/tests/example_file.rmd b/src/tests/example_file.rmd
new file mode 100644
index 0000000..525e25d
--- /dev/null
+++ b/src/tests/example_file.rmd
@@ -0,0 +1,7 @@
+ {/* TODO: Hopefully this comment turns into a todo issue */}
+ {/*
+ TODO:Multiline comments
+ also need to be turned into todos, and hopefully
+ kept together as one todo
+ */}
+ - [ ] TODO: An inline todo that's NOT a comment (what)
diff --git a/tests/example_file.qmd b/src/tests/example_file.qmd
new file mode 100644
index 0000000..525e25d
--- /dev/null
+++ b/src/tests/example_file.qmd
@@ -0,0 +1,7 @@
+ {/* TODO: Hopefully this comment turns into a todo issue */}
+ {/*
+ TODO:Multiline comments
+ also need to be turned into todos, and hopefully
+ kept together as one todo
+ */}
+ - [ ] TODO: An inline todo that's NOT a comment (what)
diff --git a/tests/config.jsonc b/tests/config.jsonc diff --git a/tests/config.jsonc b/tests/config.jsonc
new file mode 100644 new file mode 100644
index 0000000..525e25d index 0000000..525e25d

View File

@ -76,10 +76,7 @@ class NewIssueTests(unittest.TestCase):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)
def test_md_issues(self): def test_md_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 6) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 12)
def test_rmd_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'rmarkdown'), 6)
def test_r_issues(self): def test_r_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'r'), 2) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'r'), 2)
@ -159,10 +156,7 @@ class ClosedIssueTests(unittest.TestCase):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)
def test_md_issues(self): def test_md_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 6) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 12)
def test_rmd_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'rmarkdown'), 6)
def test_r_issues(self): def test_r_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'r'), 2) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'r'), 2)