We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57706cd commit 236183aCopy full SHA for 236183a
tests/models/github/test_ref.py
@@ -0,0 +1,10 @@
1
+import unittest
2
+
3
+from bot.models.github.ref import Ref
4
5
6
+class RefTest(unittest.TestCase):
7
8
+ def test_should_create_Ref(self):
9
+ ref = Ref(name="hey this is unittest ref", ref_type="branch")
10
+ self.assertEqual(str(ref), "hey this is unittest ref")
0 commit comments