Skip to content

Instantly share code, notes, and snippets.

@al3rez
Last active March 27, 2018 03:30
Show Gist options
  • Save al3rez/7cb0464923e7d7df0c150978f38feb10 to your computer and use it in GitHub Desktop.
Save al3rez/7cb0464923e7d7df0c150978f38feb10 to your computer and use it in GitHub Desktop.
Go already has RSpec!
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestMain(m *testing.M) {
// before spec
err := m.Run()
// after spec
os.Exist(err)
}
func TestGetBook(t *testing.T) {
t.Run("ok", func (t *testing.T) {
// ....
assert.Equal(t, http.StatusOK, res.Code)
}
t.Run("unauthorized", func (t *testing.T) {
// ....
assert.Equal(t, http.StatusUnauthorized, res.Code)
}
// etc
}
@mdwhatcott
Copy link

BTW, the before spec is only run once before all specs/tests, not before each.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment