Skip to content

Commit da3ac8e

Browse files
committed
Rename tests for consistency
1 parent 678a9cb commit da3ac8e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/posit/connect/test_content.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def test_name(self):
325325
assert content_item["name"] == name
326326

327327
@responses.activate
328-
def test_params_include(self):
328+
def test_params_include_string(self):
329329
# behavior
330330
mock_get = responses.get(
331331
"https://connect.example/__api__/v1/content",
@@ -373,7 +373,7 @@ def test(self):
373373
assert get_one["name"] == "Performance-Data-1671216053560"
374374

375375
@responses.activate
376-
def test_get_with_include_string(self):
376+
def test_params_include_string(self):
377377
guid = "f2f37341-e21d-3d80-c698-a935ad614066"
378378
mock_get = responses.get(
379379
f"https://connect.example/__api__/v1/content/{guid}",
@@ -390,7 +390,7 @@ def test_get_with_include_string(self):
390390

391391

392392
@responses.activate
393-
def test_get_with_include_list(self):
393+
def test_params_include_list(self):
394394
guid = "f2f37341-e21d-3d80-c698-a935ad614066"
395395
mock_get = responses.get(
396396
f"https://connect.example/__api__/v1/content/{guid}",
@@ -406,7 +406,7 @@ def test_get_with_include_list(self):
406406
assert mock_get.call_count == 1
407407

408408
@responses.activate
409-
def test_get_with_include_none(self):
409+
def test_params_include_none(self):
410410
guid = "f2f37341-e21d-3d80-c698-a935ad614066"
411411
mock_get = responses.get(
412412
f"https://connect.example/__api__/v1/content/{guid}",

0 commit comments

Comments
 (0)