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 8b495ea commit 7ff082aCopy full SHA for 7ff082a
tests/test_fetch_deprecated.py
@@ -52,6 +52,16 @@ def test_fetch1_squeeze_deprecation(self):
52
(self.subject & 'subject_id = 10').fetch1.squeeze()
53
assert_warning_about(w, "deprecated")
54
55
+ def test_fetch_copy_deprecation(self):
56
+ with warnings.catch_warnings(record=True) as w:
57
+ self.subject.fetch.copy()
58
+ assert_warning_about(w, "deprecated")
59
+
60
+ def test_fetch1_copy_deprecation(self):
61
62
+ (self.subject & 'subject_id = 10').fetch1.copy()
63
64
65
def test_limit_deprecation(self):
66
with warnings.catch_warnings(record=True) as w:
67
self.subject.fetch.limit(10)
0 commit comments