{"id":18681812,"url":"https://github.com/gravityblast/miniassert","last_synced_at":"2025-11-07T16:30:29.099Z","repository":{"id":9809141,"uuid":"11790277","full_name":"gravityblast/miniassert","owner":"gravityblast","description":"Mini assert testing framework for the Go language","archived":false,"fork":false,"pushed_at":"2014-05-22T12:59:06.000Z","size":192,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-05T22:38:21.208Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gravityblast.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-07-31T12:23:56.000Z","updated_at":"2024-07-05T19:05:12.000Z","dependencies_parsed_at":"2022-09-26T20:41:28.414Z","dependency_job_id":null,"html_url":"https://github.com/gravityblast/miniassert","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravityblast%2Fminiassert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravityblast%2Fminiassert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravityblast%2Fminiassert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gravityblast%2Fminiassert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gravityblast","download_url":"https://codeload.github.com/gravityblast/miniassert/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239533065,"owners_count":19654617,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T10:09:36.228Z","updated_at":"2025-11-07T16:30:29.058Z","avatar_url":"https://github.com/gravityblast.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# miniassert\n\nMini assert testing framework for the Go language\n\n## Usage\n\n    package hello\n\n    import (\n      \"testing\"\n      \"errors\"\n      assert \"github.com/pilu/miniassert\"\n    )\n\n    type Foo struct {}\n\n    func Hello() string { return \"Hello World\" }\n\n    func TestSomething(t *testing.T) {\n      assert.Equal(t, \"Hello World\", Hello())\n      assert.True(t, true)\n      assert.False(t, false)\n\n      var err error\n      assert.Nil(t, err)\n\n      err = errors.New(\"foo\")\n      assert.NotNil(t, err)\n\n      foo := \u0026Foo{}\n      assert.Type(t, \"*hello.Foo\", foo)\n    }\n\nRun `go test` as usual.\n\n## Author\n\n* [Andrea Franz](http://gravityblast.com)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgravityblast%2Fminiassert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgravityblast%2Fminiassert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgravityblast%2Fminiassert/lists"}