Skip to content

Commit 9bcd653

Browse files
committed
Add test binstub
1 parent 99c42bd commit 9bcd653

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CONTRIBUTING.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,7 @@ git checkout -b my-feature-branch
3333

3434
#### Bundle Install and Test
3535

36-
Ensure that you can build the project and run tests.
37-
38-
```
39-
bundle install
40-
appraisal install
41-
appraisal rake test
42-
```
36+
Ensure that you can build the project and run tests using `bin/test`.
4337

4438
#### Write Tests
4539

bin/test

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/env bash
2+
set -e
3+
4+
bundle install
5+
appraisal install
6+
appraisal rake test

0 commit comments

Comments
 (0)