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
28 lines
533 B
Go
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
|
|
} |