mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-22 13:56:44 +00:00
Added tests for issues #224/#225 and #229. Since these are known bugs, the tests are currently marked as expected failures. Once the solution is implemented, that designation can be removed and we'll still keep the test to make sure there aren't any regressions.
11 lines
278 B
Diff
11 lines
278 B
Diff
diff --git a/comment_suffix_after_source_line.c b/comment_suffix_after_source_line.c
|
|
new file mode 100644
|
|
index 0000000..d340f6a
|
|
--- /dev/null
|
|
+++ b/comment_suffix_after_source_line.c
|
|
@@ -0,0 +1,4 @@
|
|
+void some_func() {
|
|
+ int x = 0; // TODO: give this a better name
|
|
+ x++;
|
|
+}
|