Skip to content

Commit

Permalink
add swag test
Browse files Browse the repository at this point in the history
  • Loading branch information
zc2638 committed Nov 28, 2023
1 parent 5e11e8d commit 3a05db4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions swag_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// Copyright © 2020 zc2638 <zc2638@qq.com>.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package swag

import (
"testing"

"github.com/stretchr/testify/assert"
)

func TestNew(t *testing.T) {
api := New()
assert.Equal(t, "/", api.BasePath)
assert.Equal(t, "2.0", api.Swagger)
assert.Equal(t, []string{"http"}, api.Schemes)
assert.Equal(t, []string{"http"}, api.Schemes)
assert.Equal(t, "SNAPSHOT", api.Info.Version)
assert.Equal(t, "https://swagger.io/terms/", api.Info.TermsOfService)
assert.Equal(t, "Apache 2.0", api.Info.License.Name)
assert.Equal(t, "https://www.apache.org/licenses/LICENSE-2.0.html", api.Info.License.URL)
}

0 comments on commit 3a05db4

Please sign in to comment.