Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michiel Cottaar
fslpy
Commits
f5972235
Commit
f5972235
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Weakfuncref test
parent
d6f1efab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_weakfuncref.py
+16
-4
16 additions, 4 deletions
tests/test_weakfuncref.py
with
16 additions
and
4 deletions
tests/test_weakfuncref.py
+
16
−
4
View file @
f5972235
...
...
@@ -21,7 +21,19 @@ def make_weakfuncref_method_that_will_get_gcd():
def
method
(
self
):
pass
return
weakfuncref
.
WeakFunctionRef
(
Thing
.
method
)
return
weakfuncref
.
WeakFunctionRef
(
Thing
.
method
)
def
test_weakfuncref_call
():
def
func
():
pass
non_gcd_func
=
weakfuncref
.
WeakFunctionRef
(
func
)
gcd_func
=
make_weakfuncref_that_will_get_gcd
()
assert
gcd_func
()
is
None
assert
non_gcd_func
()
is
func
def
test_weakfuncref_function
():
...
...
@@ -43,11 +55,11 @@ def test_weakfuncref_method():
return
'
existent!
'
def
__priv_method
(
self
):
return
'
existent!
'
return
'
existent!
'
@classmethod
def
clsmethod
(
clsself
):
return
'
existent!
'
return
'
existent!
'
t
=
Thing
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment