Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nao1215 committed Mar 29, 2024
1 parent f1f15be commit b8c66e8
Show file tree
Hide file tree
Showing 74 changed files with 276 additions and 277 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/multi_ver_unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.20"]
go-version: ["1.18", "1.22"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "aws"]
path = aws
url = [email protected]:go-spectest/aws.git
url = [email protected]:nao1215/aws.git
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GOOS = ""
GOARCH = ""
GO_PKGROOT = ./...
GO_PACKAGES = $(shell $(GO_LIST) $(GO_PKGROOT))
GO_LDFLAGS = -ldflags "-X github.com/go-spectest/spectest/version.TagVersion=${VERSION} -X github.com/go-spectest/spectest/version.Revision=$(GIT_REVISION)"
GO_LDFLAGS = -ldflags "-X github.com/nao1215/spectest/version.TagVersion=${VERSION} -X github.com/nao1215/spectest/version.Revision=$(GIT_REVISION)"

build: ## Build binary
env GO111MODULE=on GOOS=$(GOOS) GOARCH=$(GOARCH) $(GO_BUILD) $(GO_LDFLAGS) -o $(APP) cmd/spectest/main.go
Expand All @@ -29,4 +29,4 @@ clean: ## Clean up
.DEFAULT_GOAL := help
help: ## Show this help
@grep -E '^[0-9a-zA-Z_-]+[[:blank:]]*:.*?## .*$$' $(MAKEFILE_LIST) | sort \
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[1;32m%-15s\033[0m %s\n", $$1, $$2}'
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[1;32m%-15s\033[0m %s\n", $$1, $$2}'
52 changes: 26 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[![Go Reference](https://pkg.go.dev/badge/github.com/go-spectest/spectest.svg)](https://pkg.go.dev/github.com/go-spectest/spectest)
[![LinuxUnitTest](https://github.com/go-spectest/spectest/actions/workflows/linux_test.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/linux_test.yml)
[![MacUnitTest](https://github.com/go-spectest/spectest/actions/workflows/mac_test.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/mac_test.yml)
[![WindowsUnitTest](https://github.com/go-spectest/spectest/actions/workflows/windows_test.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/windows_test.yml)
[![UnitTestExampleCodes](https://github.com/go-spectest/spectest/actions/workflows/test-examples.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/test-examples.yml)
[![reviewdog](https://github.com/go-spectest/spectest/actions/workflows/reviewdog.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/reviewdog.yml)
[![Gosec](https://github.com/go-spectest/spectest/actions/workflows/gosec.yml/badge.svg)](https://github.com/go-spectest/spectest/actions/workflows/gosec.yml)
![Coverage](https://github.com/go-spectest/octocovs-central-repo/blob/main//badges/go-spectest/spectest/coverage.svg?raw=true)
[![Go Reference](https://pkg.go.dev/badge/github.com/nao1215/spectest.svg)](https://pkg.go.dev/github.com/nao1215/spectest)
[![LinuxUnitTest](https://github.com/nao1215/spectest/actions/workflows/linux_test.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/linux_test.yml)
[![MacUnitTest](https://github.com/nao1215/spectest/actions/workflows/mac_test.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/mac_test.yml)
[![WindowsUnitTest](https://github.com/nao1215/spectest/actions/workflows/windows_test.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/windows_test.yml)
[![UnitTestExampleCodes](https://github.com/nao1215/spectest/actions/workflows/test-examples.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/test-examples.yml)
[![reviewdog](https://github.com/nao1215/spectest/actions/workflows/reviewdog.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/reviewdog.yml)
[![Gosec](https://github.com/nao1215/spectest/actions/workflows/gosec.yml/badge.svg)](https://github.com/nao1215/spectest/actions/workflows/gosec.yml)
![Coverage](https://github.com/nao1215/octocovs-central-repo/blob/main//badges/nao1215/spectest/coverage.svg?raw=true)

## What is spectest?

Expand All @@ -23,7 +23,7 @@ The spectest has its own unique use cases, [Use Cases of spectest](./doc/spectes
## Installation

```bash
go get -u github.com/go-spectest/spectest
go get -u github.com/nao1215/spectest
```

## Demo
Expand All @@ -36,28 +36,28 @@ go get -u github.com/go-spectest/spectest

| Example | Comment |
| ---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| [gin](https://github.com/go-spectest/spectest/tree/main/examples/gin) | popular martini-like web framework |
| [graphql](https://github.com/go-spectest/spectest/tree/main/examples/graphql) | using gqlgen.com to generate a graphql server |
| [gorilla](https://github.com/go-spectest/spectest/tree/main/examples/gorilla) | the gorilla web toolkit |
| [iris (broken)](https://github.com/go-spectest/spectest/tree/main/examples/iris) | iris web framework |
| [echo](https://github.com/go-spectest/spectest/tree/main/examples/echo) | High performance, extensible, minimalist Go web framework |
| [fiber](https://github.com/go-spectest/spectest/tree/main/examples/fiber) | Express inspired web framework written in Go |
| [httprouter](https://github.com/go-spectest/spectest/tree/main/examples/httprouter) | High performance HTTP request router that scales well |
| [mocks](https://github.com/go-spectest/spectest/tree/main/examples/mocks) | example mocking out external http calls |
| [sequence diagrams](https://github.com/go-spectest/spectest/tree/main/examples/sequence-diagrams) | generate sequence diagrams from tests |
| [Ginkgo](https://github.com/go-spectest/spectest/tree/main/examples/ginkgo) | Ginkgo BDD test framework|
| [plantuml](https://github.com/go-spectest/spectest/tree/main/examples/plantuml) | wxample generating plantuml|
| [gin](https://github.com/nao1215/spectest/tree/main/examples/gin) | popular martini-like web framework |
| [graphql](https://github.com/nao1215/spectest/tree/main/examples/graphql) | using gqlgen.com to generate a graphql server |
| [gorilla](https://github.com/nao1215/spectest/tree/main/examples/gorilla) | the gorilla web toolkit |
| [iris (broken)](https://github.com/nao1215/spectest/tree/main/examples/iris) | iris web framework |
| [echo](https://github.com/nao1215/spectest/tree/main/examples/echo) | High performance, extensible, minimalist Go web framework |
| [fiber](https://github.com/nao1215/spectest/tree/main/examples/fiber) | Express inspired web framework written in Go |
| [httprouter](https://github.com/nao1215/spectest/tree/main/examples/httprouter) | High performance HTTP request router that scales well |
| [mocks](https://github.com/nao1215/spectest/tree/main/examples/mocks) | example mocking out external http calls |
| [sequence diagrams](https://github.com/nao1215/spectest/tree/main/examples/sequence-diagrams) | generate sequence diagrams from tests |
| [Ginkgo](https://github.com/nao1215/spectest/tree/main/examples/ginkgo) | Ginkgo BDD test framework|
| [plantuml](https://github.com/nao1215/spectest/tree/main/examples/plantuml) | wxample generating plantuml|

### Companion libraries (Side projects)
In the original apitest repository, side projects were managed in separate repositories. However, in spectest, these side projects are managed within the same repository. However, the difflib, which operates independently from spectest, and the malfunctioning aws package, are managed in separate repositories.

| Library | Comment |
| ----------------------------------------------------------------------- | -----------------------------------------------|
| [JSON Path](https://github.com/go-spectest/spectest/tree/main/jsonpath) | JSON Path assertion addons |
| [JOSN Schema](https://github.com/go-spectest/spectest/tree/main/jsonschema) | JSON Schema assertion addons |
| [CSS Selectors](https://github.com/go-spectest/spectest/tree/main/css-selector) | CSS selector assertion addons |
| [PlantUML](https://github.com/go-spectest/spectest/tree/main/plantuml) | Export sequence diagrams as plantUML |
| [DynamoDB (broken)](https://github.com/go-spectest/tree/main/aws) | Add DynamoDB interactions to sequence diagrams |
| [JSON Path](https://github.com/nao1215/spectest/tree/main/jsonpath) | JSON Path assertion addons |
| [JOSN Schema](https://github.com/nao1215/spectest/tree/main/jsonschema) | JSON Schema assertion addons |
| [CSS Selectors](https://github.com/nao1215/spectest/tree/main/css-selector) | CSS selector assertion addons |
| [PlantUML](https://github.com/nao1215/spectest/tree/main/plantuml) | Export sequence diagrams as plantUML |
| [DynamoDB (broken)](https://github.com/nao1215/tree/main/aws) | Add DynamoDB interactions to sequence diagrams |

### Credits

Expand Down Expand Up @@ -86,7 +86,7 @@ func TestApi(t *testing.T) {

#### JSONPath

For asserting on parts of the response body JSONPath may be used. A separate module must be installed which provides these assertions - `go get -u github.com/go-spectest/spectest/jsonpath`. This is packaged separately to keep this library dependency free.
For asserting on parts of the response body JSONPath may be used. A separate module must be installed which provides these assertions - `go get -u github.com/nao1215/spectest/jsonpath`. This is packaged separately to keep this library dependency free.

Given the response is `{"a": 12345, "b": [{"key": "c", "value": "result"}]}`

Expand Down
4 changes: 2 additions & 2 deletions css-selector/selector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"testing"

"github.com/PuerkitoBio/goquery"
"github.com/go-spectest/spectest"
"github.com/nao1215/spectest"

selector "github.com/go-spectest/spectest/css-selector"
selector "github.com/nao1215/spectest/css-selector"
)

func TestTextExists(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions diagram.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"strconv"
"strings"

md "github.com/go-spectest/markdown"
"github.com/go-spectest/mermaid/sequence"
md "github.com/nao1215/markdown"

Check failure on line 16 in diagram.go

View workflow job for this annotation

GitHub Actions / Unit test (linux) (ubuntu-latest)

missing go.sum entry for module providing package github.com/nao1215/markdown (imported by github.com/nao1215/spectest); to add:

Check failure on line 16 in diagram.go

View workflow job for this annotation

GitHub Actions / Unit test (windows) (windows-latest)

missing go.sum entry for module providing package github.com/nao1215/markdown (imported by github.com/nao1215/spectest); to add:

Check failure on line 16 in diagram.go

View workflow job for this annotation

GitHub Actions / Unit test (mac) (macos-latest)

missing go.sum entry for module providing package github.com/nao1215/markdown (imported by github.com/nao1215/spectest); to add:

Check failure on line 16 in diagram.go

View workflow job for this annotation

GitHub Actions / unit-test (1.22)

missing go.sum entry for module providing package github.com/nao1215/markdown (imported by github.com/nao1215/spectest); to add:
"github.com/nao1215/mermaid/sequence"

Check failure on line 17 in diagram.go

View workflow job for this annotation

GitHub Actions / Unit test (linux) (ubuntu-latest)

missing go.sum entry for module providing package github.com/nao1215/mermaid/sequence (imported by github.com/nao1215/spectest); to add:

Check failure on line 17 in diagram.go

View workflow job for this annotation

GitHub Actions / Unit test (windows) (windows-latest)

missing go.sum entry for module providing package github.com/nao1215/mermaid/sequence (imported by github.com/nao1215/spectest); to add:

Check failure on line 17 in diagram.go

View workflow job for this annotation

GitHub Actions / Unit test (mac) (macos-latest)

missing go.sum entry for module providing package github.com/nao1215/mermaid/sequence (imported by github.com/nao1215/spectest); to add:

Check failure on line 17 in diagram.go

View workflow job for this annotation

GitHub Actions / unit-test (1.22)

missing go.sum entry for module providing package github.com/nao1215/mermaid/sequence (imported by github.com/nao1215/spectest); to add:
)

type (
Expand Down
2 changes: 1 addition & 1 deletion doc/README_css-selector.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# css-selector

Assertions for [spectest](https://github.com/go-spectest/spectest) using css selectors.
Assertions for [spectest](https://github.com/nao1215/spectest) using css selectors.

## Examples

Expand Down
4 changes: 2 additions & 2 deletions doc/README_jsonpath.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# jsonpath

This library provides jsonpath assertions for [spectest](https://github.com/go-spectest/spectest).
This library provides jsonpath assertions for [spectest](https://github.com/nao1215/spectest).

## Supported OS
- Linux
Expand All @@ -10,7 +10,7 @@ This library provides jsonpath assertions for [spectest](https://github.com/go-s
## Installation

```bash
go get -u github.com/go-spectest/spectest
go get -u github.com/nao1215/spectest
```

## Examples
Expand Down
4 changes: 2 additions & 2 deletions doc/README_plantuml.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# plantuml
Formats the results of an [spectest](https://github.com/go-spectest/spectest) run as plant uml markup.
Formats the results of an [spectest](https://github.com/nao1215/spectest) run as plant uml markup.

## Installation

```bash
go get -u github.com/go-spectest/plantuml
go get -u github.com/nao1215/plantuml
```

## Example
Expand Down
4 changes: 2 additions & 2 deletions doc/spectest.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Use Cases of spectest
## Installation of spectest cli
```shell
go install github.com/go-spectest/spectest/cmd/spectest@latest
go install github.com/nao1215/spectest/cmd/spectest@latest
```

## User-friendly 'go test'
Expand Down Expand Up @@ -54,7 +54,7 @@ You execute the following command to generate an index file:
spectest index docs --title "naraku api result"
```

[Output](https://github.com/go-spectest/naraku/blob/main/docs/index.md):
[Output](https://github.com/nao1215/naraku/blob/main/docs/index.md):
![index_result](./image/index.png)


Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"path/filepath"
"testing"

"github.com/go-spectest/spectest"
"github.com/nao1215/spectest"
)

func TestExample(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions examples/echo/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"net/http"
"testing"

"github.com/go-spectest/spectest"
"github.com/go-spectest/spectest/jsonpath"
"github.com/nao1215/spectest"
"github.com/nao1215/spectest/jsonpath"
)

func TestGetUserCookieMatching(t *testing.T) {
Expand Down
10 changes: 5 additions & 5 deletions examples/echo/go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
module github.com/go-spectest/spectest/examples/echo
module github.com/nao1215/spectest/examples/echo

go 1.18

require (
github.com/go-spectest/spectest v0.0.18
github.com/nao1215/spectest v0.0.18
github.com/labstack/echo v3.3.10+incompatible
)

require (
github.com/PaesslerAG/gval v1.0.0 // indirect
github.com/PaesslerAG/jsonpath v0.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 // indirect
github.com/go-spectest/markdown v0.0.7 // indirect
github.com/go-spectest/mermaid v0.0.1 // indirect
github.com/nao1215/diff v0.0.1 // indirect
github.com/nao1215/markdown v0.0.7 // indirect
github.com/nao1215/mermaid v0.0.1 // indirect
github.com/karrick/godirwalk v1.17.0 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
Expand Down
16 changes: 8 additions & 8 deletions examples/echo/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ github.com/PaesslerAG/jsonpath v0.1.1/go.mod h1:lVboNxFGal/VwW6d9JzIy56bUsYAP6tH
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/go-spectest/markdown v0.0.7 h1:Pr+A/YBCtEruReeMMzBKQ4ftvNtlWuaiWRqgNaETA8Q=
github.com/go-spectest/markdown v0.0.7/go.mod h1:OaFedfVlu5+eqe5tI2j3+LD/39T7k5JZAklxTul98EQ=
github.com/go-spectest/mermaid v0.0.1 h1:Mi4dxGbdW1swgOqsUaSNQaKHO/mgO7Afk0Qwt4ASa2Y=
github.com/go-spectest/mermaid v0.0.1/go.mod h1:S3YmRsGuV/EsSadoMn1C/XHr8+aXZ33UON8nuD+xi3w=
github.com/go-spectest/spectest v0.0.18 h1:ni/m9HQJpnt2OhOMk0iKwR3PcxVVm57bycvCePJj+Uk=
github.com/go-spectest/spectest v0.0.18/go.mod h1:uJr62Wbe6+vJ4xepfId8aodSOulwOl6Y1ikRJbKhWdE=
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/nao1215/markdown v0.0.7 h1:Pr+A/YBCtEruReeMMzBKQ4ftvNtlWuaiWRqgNaETA8Q=
github.com/nao1215/markdown v0.0.7/go.mod h1:OaFedfVlu5+eqe5tI2j3+LD/39T7k5JZAklxTul98EQ=
github.com/nao1215/mermaid v0.0.1 h1:Mi4dxGbdW1swgOqsUaSNQaKHO/mgO7Afk0Qwt4ASa2Y=
github.com/nao1215/mermaid v0.0.1/go.mod h1:S3YmRsGuV/EsSadoMn1C/XHr8+aXZ33UON8nuD+xi3w=
github.com/nao1215/spectest v0.0.18 h1:ni/m9HQJpnt2OhOMk0iKwR3PcxVVm57bycvCePJj+Uk=
github.com/nao1215/spectest v0.0.18/go.mod h1:uJr62Wbe6+vJ4xepfId8aodSOulwOl6Y1ikRJbKhWdE=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/karrick/godirwalk v1.17.0 h1:b4kY7nqDdioR/6qnbHQyDvmA17u5G1cZ6J+CZXwSWoI=
github.com/karrick/godirwalk v1.17.0/go.mod h1:j4mkqPuvaLI8mp1DroR3P6ad7cyYd4c1qeJ3RV7ULlk=
Expand Down
4 changes: 2 additions & 2 deletions examples/fiber/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"net/http"
"testing"

"github.com/go-spectest/spectest"
"github.com/go-spectest/spectest/jsonpath"
"github.com/nao1215/spectest"
"github.com/nao1215/spectest/jsonpath"
"github.com/gofiber/fiber/v2"
)

Expand Down
10 changes: 5 additions & 5 deletions examples/fiber/go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/go-spectest/spectest/examples/fiber
module github.com/nao1215/spectest/examples/fiber

go 1.18

require (
github.com/go-spectest/spectest v0.0.15
github.com/nao1215/spectest v0.0.15
github.com/gofiber/fiber/v2 v2.52.4
)

Expand All @@ -12,9 +12,9 @@ require (
github.com/PaesslerAG/jsonpath v0.1.1 // indirect
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 // indirect
github.com/go-spectest/markdown v0.0.6 // indirect
github.com/go-spectest/mermaid v0.0.1 // indirect
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9 // indirect
github.com/nao1215/markdown v0.0.6 // indirect
github.com/nao1215/mermaid v0.0.1 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/karrick/godirwalk v1.17.0 // indirect
github.com/klauspost/compress v1.17.0 // indirect
Expand Down
16 changes: 8 additions & 8 deletions examples/fiber/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ github.com/andybalholm/brotli v1.0.5 h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/
github.com/andybalholm/brotli v1.0.5/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/go-spectest/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/go-spectest/markdown v0.0.6 h1:S1KBMTYLwaF+gscqdG2XU4ne0axqAWDuFuGrOOv2a80=
github.com/go-spectest/markdown v0.0.6/go.mod h1:OaFedfVlu5+eqe5tI2j3+LD/39T7k5JZAklxTul98EQ=
github.com/go-spectest/mermaid v0.0.1 h1:Mi4dxGbdW1swgOqsUaSNQaKHO/mgO7Afk0Qwt4ASa2Y=
github.com/go-spectest/mermaid v0.0.1/go.mod h1:S3YmRsGuV/EsSadoMn1C/XHr8+aXZ33UON8nuD+xi3w=
github.com/go-spectest/spectest v0.0.15 h1:eSKPVVjnD+gNYOxZ8vfV3B7gR/e3yi6/kc9lqQddNFs=
github.com/go-spectest/spectest v0.0.15/go.mod h1:fgAZM8EeVPEE5/dIS0AHY9SPzy5IYVu+ZxLZXstqA1U=
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9 h1:I05FIUaZLNe9Jo6ZCvODDGBqHMk3TYd7V/wV9dZhwXk=
github.com/nao1215/diff v0.0.0-20231006143314-ce490574d4a9/go.mod h1:wWRXl4ClWLDIPkL/lS8SSxojHRg1cGngvPcya/mYhf0=
github.com/nao1215/markdown v0.0.6 h1:S1KBMTYLwaF+gscqdG2XU4ne0axqAWDuFuGrOOv2a80=
github.com/nao1215/markdown v0.0.6/go.mod h1:OaFedfVlu5+eqe5tI2j3+LD/39T7k5JZAklxTul98EQ=
github.com/nao1215/mermaid v0.0.1 h1:Mi4dxGbdW1swgOqsUaSNQaKHO/mgO7Afk0Qwt4ASa2Y=
github.com/nao1215/mermaid v0.0.1/go.mod h1:S3YmRsGuV/EsSadoMn1C/XHr8+aXZ33UON8nuD+xi3w=
github.com/nao1215/spectest v0.0.15 h1:eSKPVVjnD+gNYOxZ8vfV3B7gR/e3yi6/kc9lqQddNFs=
github.com/nao1215/spectest v0.0.15/go.mod h1:fgAZM8EeVPEE5/dIS0AHY9SPzy5IYVu+ZxLZXstqA1U=
github.com/gofiber/fiber/v2 v2.52.4 h1:P+T+4iK7VaqUsq2PALYEfBBo6bJZ4q3FP8cZ84EggTM=
github.com/gofiber/fiber/v2 v2.52.4/go.mod h1:KEOE+cXMhXG0zHc9d8+E38hoX+ZN7bhOtgeF2oT6jrQ=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
Expand Down
Loading

0 comments on commit b8c66e8

Please sign in to comment.