Files
github--github-mcp-server/pkg/github/discussions_test.go
Xavier RENE-CORAIL 81547f4e60
CodeQL / Analyze (go) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
Unit Tests / build (macos-latest) (push) Has been cancelled
Unit Tests / build (ubuntu-latest) (push) Has been cancelled
Unit Tests / build (windows-latest) (push) Has been cancelled
License Check / license-check (push) Has been cancelled
Lint / lint (push) Has been cancelled
Add tests for GitHub discussions support.
2025-04-24 12:13:16 -07:00

28 lines
533 B
Go

package github
import (
"context"
"net/http"
"testing"
"github.com/google/go-github/v69/github"
"github.com/migueleliasweb/go-github-mock/src/mock"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_ListDiscussions(t *testing.T) {
// Test implementation here
}
func Test_GetDiscussion(t *testing.T) {
// Test implementation here
}
func Test_CreateDiscussion(t *testing.T) {
// Test implementation here
}
func Test_AddDiscussionComment(t *testing.T) {
// Test implementation here
}