mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-22 22:06:43 +00:00
test: test_closed.diff test_new.diff
This commit is contained in:
parent
de37f375ca
commit
ef064d7382
@ -410,7 +410,7 @@ index 2996176..7545ccf 100644
|
|||||||
@@ -1,12 +1,9 @@
|
@@ -1,12 +1,9 @@
|
||||||
-# TODO change name.
|
-# TODO change name.
|
||||||
NAME = asm
|
NAME = asm
|
||||||
|
|
||||||
-# TODO source files must be explicitly named.
|
-# TODO source files must be explicitly named.
|
||||||
SRC = $(shell find mandatory/src -name "*.asm")
|
SRC = $(shell find mandatory/src -name "*.asm")
|
||||||
OBJ = $(patsubst src/%.asm, obj/%.o, $(SRC))
|
OBJ = $(patsubst src/%.asm, obj/%.o, $(SRC))
|
||||||
@ -419,7 +419,7 @@ index 2996176..7545ccf 100644
|
|||||||
$(NAME): $(OBJ)
|
$(NAME): $(OBJ)
|
||||||
- # TODO create the directory.
|
- # TODO create the directory.
|
||||||
$(AR) rc $@ $(OBJ)
|
$(AR) rc $@ $(OBJ)
|
||||||
|
|
||||||
diff --git a/tests/example_file.liquid b/tests/example_file.liquid
|
diff --git a/tests/example_file.liquid b/tests/example_file.liquid
|
||||||
index 0000000..7cccc5b 100644
|
index 0000000..7cccc5b 100644
|
||||||
--- a/tests/example_file.liquid
|
--- a/tests/example_file.liquid
|
||||||
@ -447,11 +447,11 @@ index 0000000..7cccc5b 100644
|
|||||||
- /* TODO: Use state here
|
- /* TODO: Use state here
|
||||||
- labels: client */
|
- labels: client */
|
||||||
+ const [data, setData] = useState<string>("");
|
+ const [data, setData] = useState<string>("");
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
- {/*
|
- {/*
|
||||||
- TODO: use styled component library
|
- TODO: use styled component library
|
||||||
- */}
|
- */}
|
||||||
+ <StyledComponent>{data}</StyledComponent>
|
+ <StyledComponent>{data}</StyledComponent>
|
||||||
</div>
|
</div>
|
||||||
@ -538,3 +538,29 @@ index 0000000..d340f6a
|
|||||||
- * labels: urgent
|
- * labels: urgent
|
||||||
- */
|
- */
|
||||||
-}
|
-}
|
||||||
|
diff --git a/tests/package.move b/tests/package.move
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..d340f6a
|
||||||
|
--- a/src/package.move
|
||||||
|
+++ b/src/package.move
|
||||||
|
@@ -0,0 +1,20 @@
|
||||||
|
-module coin::coin {
|
||||||
|
- // TODO: Test this
|
||||||
|
- // Do it
|
||||||
|
- // labels: urgent
|
||||||
|
-
|
||||||
|
- /// TODO: Natspec comment
|
||||||
|
- /// Do it
|
||||||
|
- /// labels: urgent
|
||||||
|
-
|
||||||
|
- /*
|
||||||
|
- TODO: Test this too
|
||||||
|
- Do it ASAP
|
||||||
|
- labels: urgent
|
||||||
|
- */
|
||||||
|
-
|
||||||
|
- /**
|
||||||
|
- * TODO: And this too
|
||||||
|
- * labels: urgent
|
||||||
|
- */
|
||||||
|
-}
|
||||||
@ -474,8 +474,8 @@ index 0000000..7cccc5b
|
|||||||
+
|
+
|
||||||
+ return (
|
+ return (
|
||||||
+ <div>
|
+ <div>
|
||||||
+ {/*
|
+ {/*
|
||||||
+ TODO: use styled component library
|
+ TODO: use styled component library
|
||||||
+ */}
|
+ */}
|
||||||
+ </div>
|
+ </div>
|
||||||
+ );
|
+ );
|
||||||
@ -563,3 +563,26 @@ index 0000000..d340f6a
|
|||||||
+ * labels: urgent
|
+ * labels: urgent
|
||||||
+ */
|
+ */
|
||||||
+}
|
+}
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/package.move
|
||||||
|
@@ -0,0 +1,20 @@
|
||||||
|
+module coin::coin {
|
||||||
|
+ // TODO: Test this
|
||||||
|
+ // Do it
|
||||||
|
+ // labels: urgent
|
||||||
|
+
|
||||||
|
+ /// TODO: Natspec comment
|
||||||
|
+ /// Do it
|
||||||
|
+ /// labels: urgent
|
||||||
|
+
|
||||||
|
+ /*
|
||||||
|
+ TODO: Test this too
|
||||||
|
+ Do it ASAP
|
||||||
|
+ labels: urgent
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * TODO: And this too
|
||||||
|
+ * labels: urgent
|
||||||
|
+ */
|
||||||
|
+}
|
||||||
@ -127,6 +127,9 @@ class NewIssueTest(unittest.TestCase):
|
|||||||
|
|
||||||
def test_lua_issues(self):
|
def test_lua_issues(self):
|
||||||
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'lua'), 2)
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'lua'), 2)
|
||||||
|
|
||||||
|
def test_move_issues(self):
|
||||||
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'move'), 4)
|
||||||
|
|
||||||
|
|
||||||
class CustomOptionsTest(unittest.TestCase):
|
class CustomOptionsTest(unittest.TestCase):
|
||||||
@ -304,6 +307,9 @@ class ClosedIssueTest(unittest.TestCase):
|
|||||||
|
|
||||||
def test_lua_issues(self):
|
def test_lua_issues(self):
|
||||||
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'lua'), 2)
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'lua'), 2)
|
||||||
|
|
||||||
|
def test_move_issues(self):
|
||||||
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'move'), 4)
|
||||||
|
|
||||||
class IgnorePatternTest(unittest.TestCase):
|
class IgnorePatternTest(unittest.TestCase):
|
||||||
def test_single_ignore(self):
|
def test_single_ignore(self):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user