Skip to content

Commit

Permalink
fix: make the checkbox test pass
Browse files Browse the repository at this point in the history
  • Loading branch information
tefkah committed May 17, 2022
1 parent 725d3e2 commit 1fe2b4a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion syntax.json
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@
},
{
"type": "line",
"pattern": "- [ ]"
"pattern": "- \\[ \\]"
}
]
},
Expand Down
6 changes: 4 additions & 2 deletions tests/test_closed.diff
Original file line number Diff line number Diff line change
Expand Up @@ -226,21 +226,23 @@ diff --git a/tests/example_file.md b/src/tests/example_file.md
index 525e25d..ba4e68d 100644
--- a/src/tests/example_file.md
+++ b/src/tests/example_file.md
@@ -1,6 +0,0 @@
@@ -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
index 525e25d..ba4e68d 100644
--- a/src/tests/example_file.mdx
+++ b/src/tests/example_file.mdx
@@ -1,6 +0,0 @@
@@ -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)
6 changes: 4 additions & 2 deletions tests/test_new.diff
Original file line number Diff line number Diff line change
Expand Up @@ -237,22 +237,24 @@ new file mode 100644
index 0000000..7cccc5b
--- /dev/null
+++ b/src/tests/example_file.md
@@ -0,0 +1,6 @@
@@ -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
new file mode 100644
index 0000000..7cccc5b
--- /dev/null
+++ b/src/tests/example_file.mdx
@@ -0,0 +1,6 @@
@@ -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)
4 changes: 2 additions & 2 deletions tests/test_todo_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_twig_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)

def test_md_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 4)
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 6)


class ClosedIssueTests(unittest.TestCase):
Expand Down Expand Up @@ -121,7 +121,7 @@ def test_twig_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)

def test_md_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 4)
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 6)


class IgnorePatternTests(unittest.TestCase):
Expand Down

0 comments on commit 1fe2b4a

Please sign in to comment.