From febce4f2e3a86da4171783fcc593b25a807c3da8 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Sat, 25 Aug 2018 11:53:14 -0700 Subject: Split integration tests into multiple files --- tests/endpoint_test.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/endpoint_test.go (limited to 'tests/endpoint_test.go') diff --git a/tests/endpoint_test.go b/tests/endpoint_test.go new file mode 100644 index 0000000..f1ae94d --- /dev/null +++ b/tests/endpoint_test.go @@ -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`) + } +} -- cgit v1.2.3