madon_test.go
author Mikael Berthe <mikael@lilotux.net>
Sat, 22 Apr 2017 14:49:19 +0200
changeset 145 d7ccfe67fa9e
parent 138 23d3a518d0ad
permissions -rw-r--r--
Bump version to 1.0 since the whole current API is covered

package madon

import (
	"testing"

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

func TestPrepareRequest(t *testing.T) {
	mc := &Client{
		Name:    "foo",
		ID:      "666",
		Secret:  "biiiip",
		APIBase: "http://example.com",
	}

	req, err := mc.prepareRequest("bar", rest.Get, nil)
	assert.NoError(t, err, "no error")
	assert.NotNil(t, req.Headers, "not nil")
}