test: test_closed.diff test_new.diff

This commit is contained in:
netpoe 2024-12-21 22:00:42 -06:00
parent de37f375ca
commit ef064d7382
3 changed files with 62 additions and 7 deletions

View File

@ -538,3 +538,29 @@ index 0000000..d340f6a
- * 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
- */
-}

View File

@ -563,3 +563,26 @@ index 0000000..d340f6a
+ * 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
+ */
+}

View File

@ -128,6 +128,9 @@ class NewIssueTest(unittest.TestCase):
def test_lua_issues(self):
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):
def setUp(self):
@ -305,6 +308,9 @@ class ClosedIssueTest(unittest.TestCase):
def test_lua_issues(self):
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):
def test_single_ignore(self):
os.environ['INPUT_IGNORE'] = '.*\\.java'