Skip to content

Commit ebae84e

Browse files
committed
doc: readme - contributing
1 parent d443404 commit ebae84e

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ func Test(t *testing.T) {
124124
```go
125125
func Test(t *testing.T) {
126126
s := "go is awesome"
127-
be.True(t, strings.Contains(s, "go"))
127+
be.True(t, len(s) > 0)
128128
// ok
129129
}
130130
```
@@ -145,6 +145,12 @@ The parameter order is (got, want), not (want, got). It just feels more natural
145145

146146
Be has ≈100 lines of code (+450 lines for tests). For comparison, `is` has ≈250 loc (+250 lines for tests).
147147

148+
## Contributing
149+
150+
Bug fixes are welcome. For anything other than bug fixes, please open an issue first to discuss your proposed changes. The package has a very limited scope, so it's important to discuss any new features before implementing them.
151+
152+
Make sure to add or update tests as needed.
153+
148154
## License
149155

150156
Created by [Anton Zhiyanov](https://antonz.org/). Released under the MIT License.

0 commit comments

Comments
 (0)