mirror of
https://github.com/miniflux/v2.git
synced 2025-07-02 16:38:37 +00:00
Split integration tests into multiple files
This commit is contained in:
parent
df2bebaf3d
commit
febce4f2e3
11 changed files with 1329 additions and 1267 deletions
21
tests/endpoint_test.go
Normal file
21
tests/endpoint_test.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
||||
// Use of this source code is governed by the Apache 2.0
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build integration
|
||||
|
||||
package tests
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
miniflux "miniflux.app/client"
|
||||
)
|
||||
|
||||
func TestWithBadEndpoint(t *testing.T) {
|
||||
client := miniflux.New("bad url", testAdminUsername, testAdminPassword)
|
||||
_, err := client.Users()
|
||||
if err == nil {
|
||||
t.Fatal(`Using a bad URL should raise an error`)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue