aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/endpoint_test.go
blob: f1ae94d349a3154bf546df32e308e2e7a8d4d216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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`)
	}
}