Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
github.com/muratmirgun/assert
Lightweight assertion library based on the fluent interface from assertj
The matchers included in our assert
library are fully compatible with, and
depend on the standard Go testing package.
These just add a little syntactic sugar on top of the familiar test patterns.
To use the example from the testing documentation, here is how one would normally write a test in Go:
func TestAbs(t *testing.T) {
got := Abs(-1)
if got != 1 {
t.Errorf("Abs(-1) = %d; want 1", got)
}
}
With the matchers included in our assert
package, one would write:
import "github.com/MuratSs/assert"
func TestAbs(t *testing.T) {
got := Abs(-1)
assert.With(t).
That(got).
IsEqualTo(1)
}
This is much more readable and ultimately leads to more maintainable code.
The matchers currently included in the assert
package are:
IsEmpty/IsNotEmpty
func TestIsEmpty(t *testing.T) {
s := ""
assert.With(t).
That(s).
IsEmpty()
}
func TestIsNotEmpty(t *testing.T) {
s := "foobar"
assert.With(t).
That(s).
IsNotEmpty()
}
IsEqualTo
func TestEquals(t *testing.T) {
got := Abs(-1)
assert.With(t).
That(got).
IsEqualTo(1)
}
IsGreaterThan
func TestIsEmpty(t *testing.T) {
x := 1
assert.With(t).
That(x).
IsGreaterThan(0)
}
IsNil/IsNotNil
func TestIsNil(t *testing.T) {
var s *string
assert.With(t).
That(s).
IsNil()
}
func TestIsNotNil(t *testing.T) {
var s string
assert.With(t).
That(s).
IsNotNil()
}
IsOk
func TestIsOk(t *testing.T) {
f, err := io.Open("filename.ext")
assert.With(t).
That(err).
IsOk()
}
ThatPanics
func TestThatPanics(t *testing.T) {
f := func() {
panic("error")
}
assert.With(t).
ThatPanics(f)
}
git checkout -b new-feature
)git commit -am "Added new feature xyz"
)git push origin new-feature
)FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.