branch: elpa/yasnippet-snippets
commit 48e968d555afe8bf64829da364d5c8915980cc32
Author: Andrea Crotti <[email protected]>
Commit: Andrea Crotti <[email protected]>
comment out tests for no
---
snippets/python-mode/.yas-setup.el | 33 ++++++++++++++++-----------------
1 file changed, 16 insertions(+), 17 deletions(-)
diff --git a/snippets/python-mode/.yas-setup.el
b/snippets/python-mode/.yas-setup.el
index 52ea2da77e..3029c80e44 100644
--- a/snippets/python-mode/.yas-setup.el
+++ b/snippets/python-mode/.yas-setup.el
@@ -102,24 +102,23 @@ default values. An argument named `self` is omitted."
;; Tests
+;; (ert-deftest test-split ()
+;; "For starters, only test a single string for expected output."
+;; (should (equal
+;; (python-split-args "_foo='this', bar: int = 2, baz:
Optional[My_Type], foobar")
+;; (list '("_foo" nil "'this'")
+;; '("bar" "int" "2")
+;; '("baz" "Optional[My_Type]" nil)
+;; '("foobar" nil nil)))
+;; ))
-(ert-deftest test-split ()
- "For starters, only test a single string for expected output."
- (should (equal
- (python-split-args "_foo='this', bar: int = 2, baz:
Optional[My_Type], foobar")
- (list '("_foo" nil "'this'")
- '("bar" "int" "2")
- '("baz" "Optional[My_Type]" nil)
- '("foobar" nil nil)))
- ))
-
-(ert-deftest test-argument-self ()
- "If an argument is called `self`, it must be omitted"
- (should (equal
- (python-split-args "self, _foo=\"this\"")
- (list '("_foo" nil "\"this\"")
- ))
- ))
+;; (ert-deftest test-argument-self ()
+;; "If an argument is called `self`, it must be omitted"
+;; (should (equal
+;; (python-split-args "self, _foo=\"this\"")
+;; (list '("_foo" nil "\"this\"")
+;; ))
+;; ))
;; For manual testing and development: