Last active
March 27, 2018 03:30
-
-
Save al3rez/7cb0464923e7d7df0c150978f38feb10 to your computer and use it in GitHub Desktop.
Go already has RSpec!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
BTW, the
before spec
is only run once before all specs/tests, not before each.