repo_id stringclasses 409
values | prefix large_stringlengths 34 36.3k | target large_stringlengths 1 498 | assertion_type stringclasses 31
values | difficulty stringclasses 8
values | test_file stringlengths 10 121 | test_function stringlengths 1 104 | test_class stringlengths 0 51 | lineno int32 2 11.3k | commit_idx int32 |
|---|---|---|---|---|---|---|---|---|---|
sooperset/mcp-atlassian | from mcp_atlassian.models.constants import (
EMPTY_STRING,
JIRA_DEFAULT_ID,
)
from mcp_atlassian.models.jira import (
JiraTransition,
)
class TestJiraTransition:
def test_from_api_response_with_valid_data(self):
"""Test creating a JiraTransition from valid API data."""
transition_data ... | "3" | assert | string_literal | tests/unit/models/test_jira_workflow_model.py | test_from_api_response_with_valid_data | TestJiraTransition | 41 | null |
sooperset/mcp-atlassian | import pytest
from mcp_atlassian.preprocessing.confluence import ConfluencePreprocessor
from mcp_atlassian.preprocessing.jira import JiraPreprocessor
from tests.fixtures.confluence_mocks import MOCK_COMMENTS_RESPONSE, MOCK_PAGE_RESPONSE
from tests.fixtures.jira_mocks import MOCK_JIRA_ISSUE_RESPONSE
from tests.utils.mo... | "xml" | assert | string_literal | tests/unit/preprocessing/test_preprocessing.py | test_normalize_code_language_valid_jira_languages | 742 | null | |
sooperset/mcp-atlassian | from unittest.mock import MagicMock, call
import pytest
from mcp_atlassian.jira import JiraFetcher
from mcp_atlassian.jira.epics import EpicsMixin
from mcp_atlassian.models.jira import JiraIssue
class TestEpicsMixin:
def epics_mixin(self, jira_fetcher: JiraFetcher) -> EpicsMixin:
"""Create an EpicsMixin... | {} | assert | collection | tests/unit/jira/test_epics.py | test_prepare_epic_fields_basic | TestEpicsMixin | 118 | null |
sooperset/mcp-atlassian | from pathlib import Path
from unittest.mock import MagicMock, mock_open, patch
import pytest
from mcp_atlassian.jira import JiraFetcher
from mcp_atlassian.jira.attachments import AttachmentsMixin
class TestAttachmentsMixin:
def attachments_mixin(self, jira_fetcher: JiraFetcher) -> AttachmentsMixin:
"""S... | 2 | assert | numeric_literal | tests/unit/jira/test_attachments.py | test_get_issue_attachments_metadata | TestAttachmentsMixin | 1,312 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import json
import os
import uuid
from typing import Any
from unittest.mock import patch
import pytest
from fastmcp import Client
from fastmcp.client import FastMCPTransport
from mcp.types import CallToolResult, TextContent
from mcp_atlassian.servers import main_mcp
from .conftest... | 0 | assert | numeric_literal | tests/e2e/cloud/test_mcp_tools_cloud.py | test_jira_search | TestMCPJiraTools | 92 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock
import pytest
from fastmcp.exceptions import ToolError
from mcp_atlassian.utils.decorators import check_write_access, handle_tool_errors
@pytest.mark.asyncio
async def test_check_write_access_blocks_in_read_only():
@check_write_access
async def dummy_tool(ctx, x):
... | str(exc.value) | assert | func_call | tests/unit/utils/test_decorators.py | test_check_write_access_blocks_in_read_only | 26 | null | |
sooperset/mcp-atlassian | import json
from unittest.mock import MagicMock, patch
from urllib.parse import parse_qs, urlparse
import pytest
from mcp_atlassian.utils.oauth_setup import (
OAuthSetupArgs,
parse_redirect_uri,
run_oauth_flow,
run_oauth_setup,
)
from tests.utils.assertions import assert_config_contains
from tests.uti... | vars(args)) | assert_* | func_call | tests/unit/utils/test_oauth_setup.py | test_oauth_setup_args_creation | TestOAuthSetupArgs | 353 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock, patch
import pytest
from requests.exceptions import HTTPError
from mcp_atlassian.confluence.users import UsersMixin
from mcp_atlassian.exceptions import MCPAtlassianAuthenticationError
class TestUsersMixin:
def users_mixin(self, confluence_client):
"""Create a UsersM... | params | assert | variable | tests/unit/confluence/test_users.py | test_users_mixin_has_required_methods | TestUsersMixin | 421 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import uuid
import pytest
from mcp_atlassian.confluence import ConfluenceFetcher
from .conftest import CloudInstanceInfo, CloudResourceTracker
pytestmark = pytest.mark.cloud_e2e
class TestConfluenceCloudComments:
def test_add_and_get_comments(
self,
confluen... | 0 | assert | numeric_literal | tests/e2e/cloud/test_confluence_cloud_operations.py | test_add_and_get_comments | TestConfluenceCloudComments | 139 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock, patch
import pytest
from requests.exceptions import HTTPError
from mcp_atlassian.confluence.users import UsersMixin
from mcp_atlassian.exceptions import MCPAtlassianAuthenticationError
class TestUsersMixin:
def users_mixin(self, confluence_client):
"""Create a UsersM... | 1 | assert | numeric_literal | tests/unit/confluence/test_users.py | test_users_mixin_has_required_methods | TestUsersMixin | 438 | null |
sooperset/mcp-atlassian | import os
from copy import deepcopy
from typing import Literal
from unittest.mock import MagicMock, call, patch
import pytest
from mcp_atlassian.jira.client import JiraClient
from mcp_atlassian.jira.config import JiraConfig
def test_init_with_basic_auth():
"""Test initializing the client with basic auth configur... | config | assert | variable | tests/unit/jira/test_client.py | test_init_with_basic_auth | 61 | null | |
sooperset/mcp-atlassian | import os
import subprocess
import sys
import tempfile
from pathlib import Path
import pytest
class TestStdinMonitoringFix:
def test_streamable_http_starts_without_hanging(self):
"""Test that streamable-http transport starts without stdin monitoring issues.
This test creates a minimal script tha... | 0 | assert | numeric_literal | tests/unit/test_stdin_monitoring_fix.py | test_streamable_http_starts_without_hanging | TestStdinMonitoringFix | 53 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock
import pytest
from mcp_atlassian.jira import JiraFetcher
from mcp_atlassian.jira.transitions import TransitionsMixin
from mcp_atlassian.models.jira import (
JiraIssue,
JiraStatus,
JiraStatusCategory,
JiraTransition,
)
class TestTransitionsMixin:
def transition... | "731" | assert | string_literal | tests/unit/jira/test_transitions.py | test_get_transitions_uses_full_api | TestTransitionsMixin | 304 | null |
sooperset/mcp-atlassian | import pickle
import pytest
from src.mcp_atlassian.exceptions import MCPAtlassianAuthenticationError
class TestMCPAtlassianAuthenticationError:
def test_instantiation_without_message(self):
"""Test creating exception without a message."""
error = MCPAtlassianAuthenticationError()
assert... | () | assert | collection | tests/unit/test_exceptions.py | test_instantiation_without_message | TestMCPAtlassianAuthenticationError | 22 | null |
sooperset/mcp-atlassian | import json
from datetime import datetime, timezone
from mcp_atlassian.models.constants import (
EMPTY_STRING,
JIRA_DEFAULT_ID,
UNKNOWN,
)
from mcp_atlassian.models.jira import (
JiraIssueType,
JiraPriority,
JiraStatus,
JiraStatusCategory,
JiraUser,
)
from mcp_atlassian.models.jira.comm... | "3" | assert | string_literal | tests/unit/models/test_jira_common_models.py | test_from_api_response_with_valid_data | TestJiraPriority | 291 | null |
sooperset/mcp-atlassian | import os
import time
import uuid
import pytest
from mcp_atlassian.confluence import ConfluenceFetcher
from mcp_atlassian.confluence.config import ConfluenceConfig
from mcp_atlassian.jira import JiraFetcher
from mcp_atlassian.jira.config import JiraConfig
from tests.utils.base import BaseAuthTest
class TestRealJiraA... | 3 | assert | numeric_literal | tests/integration/test_real_api.py | test_bulk_issue_creation | TestRealJiraAPI | 202 | null |
sooperset/mcp-atlassian | from pathlib import Path
from unittest.mock import MagicMock, mock_open, patch
import pytest
from mcp_atlassian.jira import JiraFetcher
from mcp_atlassian.jira.attachments import AttachmentsMixin
class TestAttachmentsMixin:
def attachments_mixin(self, jira_fetcher: JiraFetcher) -> AttachmentsMixin:
"""S... | 3 | assert | numeric_literal | tests/unit/jira/test_attachments.py | test_upload_attachments_success | TestAttachmentsMixin | 672 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock, patch
import pytest
import requests
from requests import HTTPError
from mcp_atlassian.confluence.search import SearchMixin
from mcp_atlassian.confluence.utils import quote_cql_identifier_if_needed
from mcp_atlassian.exceptions import MCPAtlassianAuthenticationError
class TestSear... | 0 | assert | numeric_literal | tests/unit/confluence/test_search.py | test_search_with_empty_results | TestSearchMixin | 79 | null |
sooperset/mcp-atlassian | import os
from unittest.mock import MagicMock, patch
from mcp_atlassian.confluence import ConfluenceFetcher
from mcp_atlassian.confluence.client import ConfluenceClient
from mcp_atlassian.confluence.config import ConfluenceConfig
def test_init_no_proxies(monkeypatch):
"""Test that ConfluenceClient does not set pr... | {} | assert | collection | tests/unit/confluence/test_client.py | test_init_no_proxies | 270 | null | |
sooperset/mcp-atlassian | from unittest.mock import patch
import pytest
import requests
from mcp_atlassian.confluence.labels import LabelsMixin
from mcp_atlassian.models.confluence import ConfluenceLabel
class TestLabelsMixin:
def labels_mixin(self, confluence_client):
"""Create a LabelsMixin instance for testing."""
# L... | "my" | assert | string_literal | tests/unit/confluence/test_labels.py | test_get_page_labels_success | TestLabelsMixin | 45 | null |
sooperset/mcp-atlassian | from unittest.mock import Mock
import pytest
from mcp_atlassian.jira.comments import CommentsMixin
class TestCommentsMixin:
def comments_mixin(self, jira_client):
"""Create a CommentsMixin instance with mocked dependencies."""
mixin = CommentsMixin(config=jira_client.config)
mixin.jira =... | "" | assert | string_literal | tests/unit/jira/test_comments.py | test_get_issue_comments_with_missing_fields | TestCommentsMixin | 124 | null |
sooperset/mcp-atlassian | import asyncio
from unittest.mock import AsyncMock, MagicMock, patch
import pytest
from mcp_atlassian import _run_stdio_with_stdin_guard, main
class TestMainTransportSelection:
def mock_server(self):
"""Create a mock server instance."""
server = MagicMock()
server.run_async = AsyncMock(r... | 1 | assert | numeric_literal | tests/unit/test_main_transport_selection.py | test_stateless_rejects_non_streamable_http | TestMainTransportSelection | 104 | null |
sooperset/mcp-atlassian | import pytest
from mcp_atlassian.jira.watchers import WatchersMixin
class TestGetIssueWatchers:
def watchers_mixin(self, jira_client):
"""Create a WatchersMixin instance with mocked dependencies."""
mixin = WatchersMixin(config=jira_client.config)
mixin.jira = jira_client.jira
ret... | "Bob" | assert | string_literal | tests/unit/jira/test_watchers.py | test_get_watchers_returns_watcher_list | TestGetIssueWatchers | 48 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import uuid
import pytest
from mcp_atlassian.confluence import ConfluenceFetcher
from mcp_atlassian.confluence.config import ConfluenceConfig
from .conftest import AuthVariant, DCInstanceInfo, DCResourceTracker
pytestmark = pytest.mark.dc_e2e
def confluence_auth(
request: py... | 0 | assert | numeric_literal | tests/e2e/test_confluence_auth_matrix.py | test_search | TestConfluenceReadOperations | 60 | null |
sooperset/mcp-atlassian | from datetime import datetime, timezone
from unittest.mock import MagicMock
import pytest
from requests.exceptions import HTTPError
from mcp_atlassian.confluence.analytics import AnalyticsMixin
from mcp_atlassian.models.confluence.analytics import PageViews, PageViewsBatchResponse
class TestAnalyticsMixin:
def ... | 0 | assert | numeric_literal | tests/unit/confluence/test_analytics.py | test_get_page_views_http_error_non_auth | TestAnalyticsMixin | 118 | null |
sooperset/mcp-atlassian | from __future__ import annotations
from unittest.mock import MagicMock, patch
import pytest
from mcp_atlassian.confluence import ConfluenceConfig, ConfluenceFetcher
from mcp_atlassian.jira import JiraConfig, JiraFetcher
from mcp_atlassian.servers.context import MainAppContext
from mcp_atlassian.servers.dependencies ... | "pat" | assert | string_literal | tests/unit/servers/test_dependencies.py | test_header_based_jira_fetcher_creation | TestGetJiraFetcher | 498 | null |
sooperset/mcp-atlassian | import pytest
from mcp_atlassian.preprocessing.confluence import ConfluencePreprocessor
from mcp_atlassian.preprocessing.jira import JiraPreprocessor
from tests.fixtures.confluence_mocks import MOCK_COMMENTS_RESPONSE, MOCK_PAGE_RESPONSE
from tests.fixtures.jira_mocks import MOCK_JIRA_ISSUE_RESPONSE
from tests.utils.mo... | "" | assert | string_literal | tests/unit/preprocessing/test_preprocessing.py | test_clean_jira_text_empty | 110 | null | |
sooperset/mcp-atlassian | from unittest.mock import patch
import pytest
import requests
from mcp_atlassian.confluence.comments import CommentsMixin
class TestCommentsMixin:
def comments_mixin(self, confluence_client):
"""Create a CommentsMixin instance for testing."""
# CommentsMixin inherits from ConfluenceClient, so we... | None | assert | none_literal | tests/unit/confluence/test_comments.py | test_add_comment_success | TestCommentsMixin | 177 | null |
sooperset/mcp-atlassian | import pytest
from mcp_atlassian.preprocessing.confluence import ConfluencePreprocessor
from mcp_atlassian.preprocessing.jira import JiraPreprocessor
from tests.fixtures.confluence_mocks import MOCK_COMMENTS_RESPONSE, MOCK_PAGE_RESPONSE
from tests.fixtures.jira_mocks import MOCK_JIRA_ISSUE_RESPONSE
from tests.utils.mo... | "sql" | assert | string_literal | tests/unit/preprocessing/test_preprocessing.py | test_normalize_code_language_valid_jira_languages | 741 | null | |
sooperset/mcp-atlassian | from unittest.mock import patch
import pytest
import requests
from mcp_atlassian.confluence.spaces import SpacesMixin
from tests.fixtures.confluence_mocks import MOCK_SPACES_RESPONSE
class TestSpacesMixin:
def spaces_mixin(self, confluence_client):
"""Create a SpacesMixin instance for testing."""
... | 1 | assert | numeric_literal | tests/unit/confluence/test_spaces.py | test_get_user_contributed_spaces_with_duplicate_spaces | TestSpacesMixin | 130 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock, patch
import pytest
from mcp_atlassian.confluence.pages import PagesMixin
from mcp_atlassian.confluence.utils import extract_emoji_from_property
from mcp_atlassian.models.confluence import ConfluencePage
class TestPagesMixin:
def pages_mixin(self, confluence_client):
... | 0 | assert | numeric_literal | tests/unit/confluence/test_pages.py | test_get_page_ancestors_empty | TestPagesMixin | 127 | null |
sooperset/mcp-atlassian | import json
import logging
import os
from unittest.mock import MagicMock, patch
import pytest
from fastmcp import Context
from fastmcp.tools import Tool as FastMCPTool
from mcp.types import Tool as MCPTool
from starlette.applications import Starlette
from starlette.middleware import Middleware
from starlette.testclien... | body | assert | variable | tests/unit/servers/test_mcp_protocol.py | test_middleware_invalid_auth_header | TestMCPProtocolIntegration | 537 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import uuid
import pytest
from mcp_atlassian.confluence import ConfluenceFetcher
from mcp_atlassian.confluence.config import ConfluenceConfig
from .conftest import AuthVariant, CloudInstanceInfo, CloudResourceTracker
pytestmark = pytest.mark.cloud_e2e
def confluence_auth(
re... | 0 | assert | numeric_literal | tests/e2e/cloud/test_confluence_auth_matrix.py | test_search | TestConfluenceReadOperations | 60 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock, Mock
import pytest
import requests
from requests.exceptions import HTTPError
from mcp_atlassian.confluence.v2_adapter import ConfluenceV2Adapter
class TestConfluenceV2Adapter:
def mock_session(self):
"""Create a mock session."""
return MagicMock(spec=requests... | "789" | assert | string_literal | tests/unit/confluence/test_v2_adapter.py | test_get_page_success | TestConfluenceV2Adapter | 66 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import uuid
import pytest
from mcp_atlassian.confluence import ConfluenceFetcher
from .conftest import DCInstanceInfo, DCResourceTracker
pytestmark = pytest.mark.dc_e2e
class TestConfluenceDCComments:
def test_add_and_get_comments(
self,
confluence_fetcher: ... | 0 | assert | numeric_literal | tests/e2e/test_confluence_dc_operations.py | test_add_and_get_comments | TestConfluenceDCComments | 123 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import json
import os
from typing import Any
from unittest.mock import patch
import pytest
from fastmcp import Client
from fastmcp.client import FastMCPTransport
from mcp.types import CallToolResult, ImageContent, TextContent
from mcp_atlassian.servers import main_mcp
from .confte... | True | assert | bool_literal | tests/e2e/cloud/test_images_cloud.py | test_jira_get_issue_images | TestJiraGetIssueImages | 78 | null |
sooperset/mcp-atlassian | import pickle
import pytest
from src.mcp_atlassian.exceptions import MCPAtlassianAuthenticationError
class TestMCPAtlassianAuthenticationError:
def test_exception_equality(self):
"""Test exception equality comparison."""
message = "Same message"
error1 = MCPAtlassianAuthenticationError(m... | error3.args | assert | complex_expr | tests/unit/test_exceptions.py | test_exception_equality | TestMCPAtlassianAuthenticationError | 182 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock
import pytest
import requests
from mcp_atlassian.jira import JiraConfig
from mcp_atlassian.jira.boards import BoardsMixin
from mcp_atlassian.models.jira import JiraBoard
def mock_config():
"""Fixture to create a mock JiraConfig instance."""
config = MagicMock(spec=JiraConf... | [] | assert | collection | tests/unit/jira/test_boards.py | test_get_all_agile_boards_exception | 71 | null | |
sooperset/mcp-atlassian | import asyncio
from unittest.mock import AsyncMock, MagicMock, patch
import pytest
from mcp_atlassian import _run_stdio_with_stdin_guard, main
class TestMainTransportSelection:
def mock_server(self):
"""Create a mock server instance."""
server = MagicMock()
server.run_async = AsyncMock(r... | 0 | assert | numeric_literal | tests/unit/test_main_transport_selection.py | test_error_handling_preserved | TestMainTransportSelection | 188 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import uuid
import pytest
from mcp_atlassian.confluence import ConfluenceFetcher
from mcp_atlassian.confluence.config import ConfluenceConfig
from .conftest import AuthVariant, DCInstanceInfo, DCResourceTracker
pytestmark = pytest.mark.dc_e2e
def confluence_auth(
request: py... | spaces | assert | variable | tests/e2e/test_confluence_auth_matrix.py | test_get_spaces | TestConfluenceReadOperations | 69 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import json
import os
import uuid
from typing import Any
from unittest.mock import patch
import pytest
from fastmcp import Client
from fastmcp.client import FastMCPTransport
from mcp.types import CallToolResult, TextContent
from mcp_atlassian.servers import main_mcp
from .conftest... | None | assert | none_literal | tests/e2e/cloud/test_mcp_tools_cloud.py | test_confluence_create_and_delete_page | TestMCPConfluenceTools | 176 | null |
sooperset/mcp-atlassian | from unittest.mock import patch
import pytest
import requests
from mcp_atlassian.confluence.spaces import SpacesMixin
from tests.fixtures.confluence_mocks import MOCK_SPACES_RESPONSE
class TestSpacesMixin:
def spaces_mixin(self, confluence_client):
"""Create a SpacesMixin instance for testing."""
... | {} | assert | collection | tests/unit/confluence/test_spaces.py | test_get_user_contributed_spaces_api_error | TestSpacesMixin | 143 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock, patch
import pytest
from mcp_atlassian.jira import JiraFetcher
from mcp_atlassian.jira.formatting import FormattingMixin
from mcp_atlassian.preprocessing import JiraPreprocessor
def formatting_mixin(jira_fetcher: JiraFetcher) -> FormattingMixin:
"""Fixture to create a Formatt... | fields | assert | variable | tests/unit/jira/test_formatting.py | test_sanitize_transition_fields_basic | 328 | null | |
sooperset/mcp-atlassian | from __future__ import annotations
import json
import os
from typing import Any
from unittest.mock import patch
import pytest
from fastmcp import Client
from fastmcp.client import FastMCPTransport
from mcp.types import CallToolResult, ImageContent, TextContent
from mcp_atlassian.servers import main_mcp
from .confte... | 1 | assert | numeric_literal | tests/e2e/test_images_dc.py | test_jira_get_issue_images | TestJiraGetIssueImages | 79 | null |
sooperset/mcp-atlassian | import os
from copy import deepcopy
from typing import Literal
from unittest.mock import MagicMock, call, patch
import pytest
from mcp_atlassian.jira.client import JiraClient
from mcp_atlassian.jira.config import JiraConfig
def test_clean_text():
"""Test the _clean_text method."""
with (
patch("mcp_a... | "" | assert | string_literal | tests/unit/jira/test_client.py | test_clean_text | 142 | null | |
sooperset/mcp-atlassian | from mcp_atlassian.models.constants import (
EMPTY_STRING,
JIRA_DEFAULT_ID,
)
from mcp_atlassian.models.jira import (
JiraTransition,
)
class TestJiraTransition:
def test_from_api_response_with_valid_data(self):
"""Test creating a JiraTransition from valid API data."""
transition_data ... | "10" | assert | string_literal | tests/unit/models/test_jira_workflow_model.py | test_from_api_response_with_valid_data | TestJiraTransition | 38 | null |
sooperset/mcp-atlassian | import json
import time
from unittest.mock import ANY, MagicMock, Mock, patch
import pytest
import requests
from requests.exceptions import HTTPError
from mcp_atlassian.confluence.client import ConfluenceClient
from mcp_atlassian.confluence.config import ConfluenceConfig
from mcp_atlassian.exceptions import MCPAtlass... | "pat" | assert | string_literal | tests/unit/auth/test_authentication.py | test_pat_token_precedence_over_basic_auth | TestPATTokenValidation | 256 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import uuid
import pytest
from mcp_atlassian.confluence import ConfluenceFetcher
from .conftest import CloudInstanceInfo, CloudResourceTracker
pytestmark = pytest.mark.cloud_e2e
class TestConfluenceCloudBehavior:
def test_is_cloud(self, confluence_fetcher: ConfluenceFetcher... | True | assert | bool_literal | tests/e2e/cloud/test_confluence_cloud_operations.py | test_is_cloud | TestConfluenceCloudBehavior | 20 | null |
sooperset/mcp-atlassian | from mcp_atlassian.models import (
ConfluencePage,
)
class TestConfluencePage:
def test_from_api_response_with_empty_data(self):
"""Test creating a ConfluencePage from empty data."""
page = ConfluencePage.from_api_response({})
# Should use default values
assert page.id == "0"
... | "" | assert | string_literal | tests/unit/models/test_confluence_page_model.py | test_from_api_response_with_empty_data | TestConfluencePage | 45 | null |
sooperset/mcp-atlassian | from __future__ import annotations
import uuid
import pytest
from mcp_atlassian.confluence import ConfluenceFetcher
from mcp_atlassian.confluence.config import ConfluenceConfig
from .conftest import AuthVariant, DCInstanceInfo, DCResourceTracker
pytestmark = pytest.mark.dc_e2e
def confluence_auth(
request: py... | None | assert | none_literal | tests/e2e/test_confluence_auth_matrix.py | test_get_page | TestConfluenceReadOperations | 47 | null |
sooperset/mcp-atlassian | from unittest.mock import patch
import pytest
import requests
from mcp_atlassian.confluence.comments import CommentsMixin
class TestCommentsMixin:
def comments_mixin(self, confluence_client):
"""Create a CommentsMixin instance for testing."""
# CommentsMixin inherits from ConfluenceClient, so we... | 0 | assert | numeric_literal | tests/unit/confluence/test_comments.py | test_get_page_comments_api_error | TestCommentsMixin | 102 | null |
sooperset/mcp-atlassian | from unittest.mock import MagicMock
import pytest
from mcp_atlassian.jira import JiraFetcher
from mcp_atlassian.jira.transitions import TransitionsMixin
from mcp_atlassian.models.jira import (
JiraIssue,
JiraStatus,
JiraStatusCategory,
JiraTransition,
)
class TestTransitionsMixin:
def transition... | "6" | assert | string_literal | tests/unit/jira/test_transitions.py | test_get_transitions_uses_full_api | TestTransitionsMixin | 308 | null |
sooperset/mcp-atlassian | from unittest.mock import patch
import pytest
import requests
from mcp_atlassian.confluence.labels import LabelsMixin
from mcp_atlassian.models.confluence import ConfluenceLabel
class TestLabelsMixin:
def labels_mixin(self, confluence_client):
"""Create a LabelsMixin instance for testing."""
# L... | name | assert | variable | tests/unit/confluence/test_labels.py | test_add_page_label_success | TestLabelsMixin | 119 | null |
sublimelsp/LSP | from __future__ import annotations
from copy import deepcopy
from LSP.plugin.code_actions import CodeActionsOnFormatOnSaveTask
from LSP.plugin.code_actions import get_matching_on_save_kinds
from LSP.plugin.core.constants import RegionKey
from LSP.plugin.core.protocol import Point
from LSP.plugin.core.settings import u... | False) | self.assertEqual | bool_literal | tests/test_code_actions.py | test_applies_matching_kind | CodeActionsOnSaveTestCase | 134 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.workspace import is_subpath_of
from LSP.plugin.core.workspace import sorted_workspace_folders
from LSP.plugin.core.workspace import WorkspaceFolder
import os
import tempfile
import unittest
class IsSubpathOfTest(unittest.TestCase):
def is_subpath_case_diffe... | is_subpath_of(r"e:\WWW\nthu-ee-iframe\public\include\list_faculty_functions.php", r"E:\WWW\nthu-ee-iframe")) | self.assertTrue | func_call | tests/test_workspace.py | is_subpath_case_differs | IsSubpathOfTest | 51 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.url import parse_uri
from LSP.plugin.core.url import view_to_uri
import os
import sublime
import sys
import unittest
import unittest.mock
class WindowsTests(unittest.TestCase):
def test_converts_encoded_bad_dr... | parse_uri("file:///c%3A/dir%20ectory/file.txt")[1]) | self.assertEqual | func_call | tests/test_url.py | test_converts_encoded_bad_drive_uri_to_path | WindowsTests | 24 | null |
sublimelsp/LSP | from __future__ import annotations
from copy import deepcopy
from LSP.plugin.completion import completion_with_defaults
from LSP.plugin.completion import format_completion
from LSP.protocol import CompletionItem
from LSP.protocol import CompletionItemDefaults
from LSP.protocol import CompletionItemKind
from LSP.protoc... | '{{ turtle }}') | self.assertEqual | string_literal | tests/test_completion.py | test_replace_insert_mode | QueryCompletionsTests | 647 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.collections import DottedDict
from LSP.plugin.core.edit import Promise
from LSP.plugin.core.protocol import Error
from LSP.plugin.core.sessions import get_initialize_params
from LSP.plugin.core.sessions import Logger
from LSP.plugin.core.sessions import Manager
f... | "somelang") | self.assertEqual | string_literal | tests/test_session.py | test_get_session_buffer_for_uri_with_nonfiles | SessionTest | 280 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.protocol import Notification
from LSP.plugin.core.protocol import Point
from LSP.plugin.core.protocol import Request
from LSP.plugin.core.transports import JsonRpcProcessor
from LSP.protocol import Position
from LSP.protocol import Range
import unittest
LSP_STAR... | 1) | self.assertEqual | numeric_literal | tests/test_protocol.py | test_initialize | RequestTests | 41 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import basescope2languageid
from LSP.plugin.core.types import diff
from LSP.plugin.core.types import DocumentSelector_
from unittest.mock import MagicMock
import sublime
import unittest
class TestDiff(unittest.TestCase):
def test_with_sets(self) -> No... | set(("x", "y", "z"))) | self.assertEqual | func_call | tests/test_types.py | test_with_sets | TestDiff | 30 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.logging import debug
from LSP.plugin.core.protocol import Request
from LSP.plugin.core.registry import windows
from LSP.plugin.core.types import ClientStates
from LSP.plugin.documents import DocumentSyncListener
from os.path import join
from setup import add_conf... | self.wm.get_config_manager().match_view(self.view)) | self.assertTrue | func_call | tests/test_documents.py | test_sends_did_open_to_multiple_sessions | WindowDocumentHandlerTests | 70 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import apply_text_edits
from LSP.plugin.core.edit import parse_workspace_edit
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.views import entire_content
from LSP.plugin.edit import _parse_text_edit as parse_text_edit
from LSP.plugin.edit import _... | 'a') | self.assertEqual | string_literal | tests/test_edit.py | test_sorts_in_application_order | SortByApplicationOrderTests | 217 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.collections import DottedDict
from typing import Any
from unittest import TestCase
class DottedDictTests(TestCase):
def verify(self, d: DottedDict, path: str, value: Any) -> None:
self.assertEqual(d.get(path), value)
def test_as_dict(self) -> N... | {}) | self.assertEqual | collection | tests/test_collections.py | test_as_dict | DottedDictTests | 128 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import apply_text_edits
from LSP.plugin.core.edit import parse_workspace_edit
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.views import entire_content
from LSP.plugin.edit import _parse_text_edit as parse_text_edit
from LSP.plugin.edit import _... | 'b') | self.assertEqual | string_literal | tests/test_edit.py | test_sorts_in_application_order | SortByApplicationOrderTests | 216 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import basescope2languageid
from LSP.plugin.core.types import diff
from LSP.plugin.core.types import DocumentSelector_
from unittest.mock import MagicMock
import sublime
import unittest
class TestDiff(unittest.TestCase):
def test_remove(self) -> None:... | added) | self.assertFalse | variable | tests/test_types.py | test_remove | TestDiff | 20 | null |
sublimelsp/LSP | from __future__ import annotations
from copy import deepcopy
from LSP.plugin.completion import completion_with_defaults
from LSP.plugin.completion import format_completion
from LSP.protocol import CompletionItem
from LSP.protocol import CompletionItemDefaults
from LSP.protocol import CompletionItemKind
from LSP.protoc... | annotation) | self.assertEqual | variable | tests/test_completion.py | _verify_completion | FormatCompletionsUnitTests | 921 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import ClientConfig
from LSP.plugin.core.types import DottedDict
from LSP.plugin.core.views import get_uri_and_position_from_location
from LSP.plugin.core.views import to_encoded_filename
from os import environ
from os.path import dirname
from os.path impor... | settings['unknown']) | self.assertEqual | complex_expr | tests/test_configs.py | test_exposes_unknown_root_keys | ConfigParsingTests | 135 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import ClientConfig
from LSP.plugin.core.types import DottedDict
from LSP.plugin.core.views import get_uri_and_position_from_location
from LSP.plugin.core.views import to_encoded_filename
from os import environ
from os.path import dirname
from os.path impor... | True) | self.assertEqual | bool_literal | tests/test_configs.py | test_can_update_config | ConfigParsingTests | 44 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.sessions import SessionBufferProtocol
from LSP.plugin.core.types import ClientConfig
from LSP.plugin.core.url import filename_to_uri
from LSP.protocol import ErrorCodes
from LSP.protocol import TextDocumentSyncKind
from setup import TextDocumentTestCase
from typi... | "hello") | self.assertEqual | string_literal | tests/test_server_requests.py | test_m_client_registerCapability | ServerRequests | 149 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.panels import MAX_LOG_LINES_LIMIT_ON
from LSP.plugin.core.panels import PanelName
from LSP.plugin.core.registry import windows
from unittesting import DeferrableTestCase
import sublime
class LspServerPanelTests(DeferrableTestCase):
def setUp(self) -> None:
... | self.wm) | self.assertIsNotNone | complex_expr | tests/test_server_panel_circular.py | setUp | LspServerPanelTests | 17 | null |
sublimelsp/LSP | from __future__ import annotations
from copy import deepcopy
from LSP.plugin import apply_text_edits
from LSP.plugin import Request
from LSP.plugin.core.protocol import UINT_MAX
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.views import entire_content
from LSP.plugin.hover import _test_contents
... | {"general": "kenobi"}) | self.assertEqual | collection | tests/test_single_document.py | test_progress | SingleDocumentTestCase | 353 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import apply_text_edits
from LSP.plugin.core.edit import parse_workspace_edit
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.views import entire_content
from LSP.plugin.edit import _parse_text_edit as parse_text_edit
from LSP.plugin.edit import _... | 0) | self.assertEqual | numeric_literal | tests/test_edit.py | test_parse_no_changes_from_lsp | WorkspaceEditTests | 176 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.protocol import Notification
from LSP.plugin.core.protocol import Point
from LSP.plugin.core.protocol import Request
from LSP.plugin.core.transports import JsonRpcProcessor
from LSP.protocol import Position
from LSP.protocol import Range
import unittest
LSP_STAR... | "shutdown") | self.assertEqual | string_literal | tests/test_protocol.py | test_shutdown | RequestTests | 50 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.collections import DottedDict
from LSP.plugin.core.edit import Promise
from LSP.plugin.core.protocol import Error
from LSP.plugin.core.sessions import get_initialize_params
from LSP.plugin.core.sessions import Logger
from LSP.plugin.core.sessions import Manager
f... | (True, False)) | self.assertEqual | collection | tests/test_session.py | test_document_sync_capabilities | SessionTest | 199 | null |
sublimelsp/LSP | from __future__ import annotations
from copy import deepcopy
from LSP.plugin.code_actions import CodeActionsOnFormatOnSaveTask
from LSP.plugin.code_actions import get_matching_on_save_kinds
from LSP.plugin.core.constants import RegionKey
from LSP.plugin.core.protocol import Point
from LSP.plugin.core.settings import u... | 1) | self.assertEqual | numeric_literal | tests/test_code_actions.py | test_requests_with_diagnostics | CodeActionsOnSaveTestCase | 148 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.url import filename_to_uri
from LSP.protocol import DiagnosticSeverity
from LSP.protocol import DiagnosticTag
from LSP.protocol import PublishDiagnosticsParams
from setup import TextDocumentTestCase
from typing import Generator
import sublime
class ServerNotific... | 0) | self.assertEqual | numeric_literal | tests/test_server_notifications.py | test_publish_diagnostics | ServerNotifications | 60 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import filename_to_uri
from LSP.plugin import FileWatcher
from LSP.plugin import FileWatcherEvent
from LSP.plugin import FileWatcherEventType
from LSP.plugin import FileWatcherProtocol
from LSP.plugin import parse_uri
from LSP.plugin.core.file_watcher import file_watc... | 1) | self.assertEqual | numeric_literal | tests/test_file_watcher.py | test_creates_static_watcher | FileWatcherStaticTests | 136 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.url import parse_uri
from LSP.plugin.core.url import view_to_uri
import os
import sublime
import sys
import unittest
import unittest.mock
class MultiplatformTests(unittest.TestCase):
def test_parse_uri(self) -... | "buffer") | self.assertEqual | string_literal | tests/test_url.py | test_parse_uri | MultiplatformTests | 79 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import apply_text_edits
from LSP.plugin.core.edit import parse_workspace_edit
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.views import entire_content
from LSP.plugin.edit import _parse_text_edit as parse_text_edit
from LSP.plugin.edit import _... | 1) | self.assertEqual | numeric_literal | tests/test_edit.py | test_parse_changes_from_lsp | WorkspaceEditTests | 181 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import filename_to_uri
from LSP.plugin import FileWatcher
from LSP.plugin import FileWatcherEvent
from LSP.plugin import FileWatcherEventType
from LSP.plugin import FileWatcherProtocol
from LSP.plugin import parse_uri
from LSP.plugin.core.file_watcher import file_watc... | base_path_1) | self.assertEqual | variable | tests/test_file_watcher.py | test_does_not_aggregate_non_matching_base | FileWatcherDynamicTests | 281 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.workspace import is_subpath_of
from LSP.plugin.core.workspace import sorted_workspace_folders
from LSP.plugin.core.workspace import WorkspaceFolder
import os
import tempfile
import unittest
class SortedWorkspaceFoldersTest(unittest.TestCase):
def test_get_w... | nearest_folder) | self.assertEqual | variable | tests/test_workspace.py | test_get_workspace_from_multi_folder_project | SortedWorkspaceFoldersTest | 22 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import filename_to_uri
from LSP.plugin import FileWatcher
from LSP.plugin import FileWatcherEvent
from LSP.plugin import FileWatcherEventType
from LSP.plugin import FileWatcherProtocol
from LSP.plugin import parse_uri
from LSP.plugin.core.file_watcher import file_watc... | ['*.ts']) | self.assertEqual | collection | tests/test_file_watcher.py | test_aggregates_multiple_registrations_with_common_kind_and_base | FileWatcherDynamicTests | 241 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.protocol import Notification
from LSP.plugin.core.protocol import Point
from LSP.plugin.core.protocol import Request
from LSP.plugin.core.transports import JsonRpcProcessor
from LSP.protocol import Position
from LSP.protocol import Range
import unittest
LSP_STAR... | {"text": "😃"}) | self.assertEqual | collection | tests/test_protocol.py | test_encode | EncodingTests | 32 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import filename_to_uri
from LSP.plugin import FileWatcher
from LSP.plugin import FileWatcherEvent
from LSP.plugin import FileWatcherEventType
from LSP.plugin import FileWatcherProtocol
from LSP.plugin import parse_uri
from LSP.plugin.core.file_watcher import file_watc... | 0) | self.assertEqual | numeric_literal | tests/test_file_watcher.py | setUp | FileWatcherDocumentTestCase | 102 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.protocol import Notification
from LSP.plugin.core.protocol import Point
from LSP.plugin.core.protocol import Request
from LSP.plugin.core.transports import JsonRpcProcessor
from LSP.protocol import Position
from LSP.protocol import Range
import unittest
LSP_STAR... | "exit") | self.assertEqual | string_literal | tests/test_protocol.py | test_exit | NotificationTests | 69 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import basescope2languageid
from LSP.plugin.core.types import diff
from LSP.plugin.core.types import DocumentSelector_
from unittest.mock import MagicMock
import sublime
import unittest
class TestDocumentSelector(unittest.TestCase):
def setUp(self) ->... | selector.matches(self._make_html_view("abc.html"))) | self.assertTrue | func_call | tests/test_types.py | test_pattern_asterisk | TestDocumentSelector | 84 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import ClientConfig
from LSP.plugin.core.types import DottedDict
from LSP.plugin.core.views import get_uri_and_position_from_location
from LSP.plugin.core.views import to_encoded_filename
from os import environ
from os.path import dirname
from os.path impor... | options) | self.assertNotIn | variable | tests/test_configs.py | test_filter_out_disabled_capabilities_ignore_partially | ConfigParsingTests | 125 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.panels import MAX_LOG_LINES_LIMIT_ON
from LSP.plugin.core.panels import PanelName
from LSP.plugin.core.registry import windows
from unittesting import DeferrableTestCase
import sublime
class LspServerPanelTests(DeferrableTestCase):
def setUp(self) -> None:
... | self.panel) | self.assertIsNotNone | complex_expr | tests/test_server_panel_circular.py | setUp | LspServerPanelTests | 22 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import ClientConfig
from LSP.plugin.core.types import DottedDict
from LSP.plugin.core.views import get_uri_and_position_from_location
from LSP.plugin.core.views import to_encoded_filename
from os import environ
from os.path import dirname
from os.path impor... | "source.python") | self.assertEqual | string_literal | tests/test_configs.py | test_can_parse_settings_with_selector | ConfigParsingTests | 35 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.url import parse_uri
from LSP.plugin.core.url import view_to_uri
import os
import sublime
import sys
import unittest
import unittest.mock
class NixTests(unittest.TestCase):
def test_converts_path_to_uri(self) ... | filename_to_uri("/dir ectory/file.txt")) | self.assertEqual | func_call | tests/test_url.py | test_converts_path_to_uri | NixTests | 50 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.collections import DottedDict
from typing import Any
from unittest import TestCase
class DottedDictTests(TestCase):
def verify(self, d: DottedDict, path: str, value: Any) -> None:
self.assertEqual(d.get(path), value)
def test_copy_partial(self)... | 'd') | self.assertEqual | string_literal | tests/test_collections.py | test_copy_partial | DottedDictTests | 151 | null |
sublimelsp/LSP | from __future__ import annotations
from collections.abc import Generator
from LSP.plugin.core.promise import Promise
from LSP.plugin.core.protocol import Notification
from LSP.plugin.core.protocol import Request
from LSP.plugin.core.registry import windows
from LSP.plugin.core.settings import client_configs
from LSP.p... | self.session) | self.assertIsNotNone | complex_expr | tests/setup.py | set_response | TextDocumentTestCase | 217 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.signature_help import SigHelp
from LSP.plugin.core.signature_help import SignatureHelpStyle
from LSP.protocol import SignatureHelp
import sublime
import unittest
class SignatureHelpTest(unittest.TestCase):
def setUp(self) -> None:
self.view = sublim... | r''' <div class="highlight"><pre> <span style="color: #\w{6}">RUN </span> <span style="color: #\w{6}">\[</span> <span style="color: #\w{6}"> </span> <span style="color: #\w{6}">"command"</span> <span style="color: #\w{6}"> </span> <span style="color: #\w{6}; font-weight: bold; text-decoration: underline">"parameters"</... | assert_* | complex_expr | tests/test_signature_help.py | test_dockerfile_signature | SignatureHelpTest | 230 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import ClientConfig
from LSP.plugin.core.types import DottedDict
from LSP.plugin.core.views import get_uri_and_position_from_location
from LSP.plugin.core.views import to_encoded_filename
from os import environ
from os.path import dirname
from os.path impor... | '/foo/bar:1:6') | self.assertEqual | string_literal | tests/test_configs.py | test_path_maps | ConfigParsingTests | 207 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import basescope2languageid
from LSP.plugin.core.types import diff
from LSP.plugin.core.types import DocumentSelector_
from unittest.mock import MagicMock
import sublime
import unittest
class TestDiff(unittest.TestCase):
def test_with_sets(self) -> No... | set(("a", "b", "c"))) | self.assertEqual | func_call | tests/test_types.py | test_with_sets | TestDiff | 31 | null |
sublimelsp/LSP | from __future__ import annotations
from copy import deepcopy
from LSP.plugin.completion import completion_with_defaults
from LSP.plugin.completion import format_completion
from LSP.protocol import CompletionItem
from LSP.protocol import CompletionItemDefaults
from LSP.protocol import CompletionItemKind
from LSP.protoc... | 3) | self.assertEqual | numeric_literal | tests/test_completion.py | verify_multi_cursor | QueryCompletionsTests | 485 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin import apply_text_edits
from LSP.plugin.core.edit import parse_workspace_edit
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.views import entire_content
from LSP.plugin.edit import _parse_text_edit as parse_text_edit
from LSP.plugin.edit import _... | []) | self.assertEqual | collection | tests/test_edit.py | test_empty_sort | SortByApplicationOrderTests | 206 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.types import basescope2languageid
from LSP.plugin.core.types import diff
from LSP.plugin.core.types import DocumentSelector_
from unittest.mock import MagicMock
import sublime
import unittest
class TestDiff(unittest.TestCase):
def test_completely_new(self) ... | new) | self.assertEqual | variable | tests/test_types.py | test_completely_new | TestDiff | 41 | null |
sublimelsp/LSP | from __future__ import annotations
from copy import deepcopy
from LSP.plugin.core.protocol import Point
from LSP.plugin.core.types import Any
from LSP.plugin.core.url import filename_to_uri
from LSP.plugin.core.views import did_change
from LSP.plugin.core.views import did_open
from LSP.plugin.core.views import did_sav... | 2) | self.assertEqual | numeric_literal | tests/test_views.py | test_selection_range_params | ViewsTest | 177 | null |
sublimelsp/LSP | from __future__ import annotations
from LSP.plugin.core.configurations import WindowConfigManager
from test_mocks import DISABLED_CONFIG
from test_mocks import TEST_CONFIG
from unittest import TestCase
from unittest.mock import MagicMock
from unittesting import ViewTestCase
import sublime
class WindowConfigManagerTes... | self.view) | self.assertIsNotNone | complex_expr | tests/test_configurations.py | test_no_configs | WindowConfigManagerTests | 33 | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.