Add docs on how to run gem tests

fixes PLAT-1364

Test plan:
follow the readme :)

Change-Id: I366660f71eda3ce7e319911b693bc2d25b7b69bf
Reviewed-on: https://gerrit.instructure.com/74070
Reviewed-by: August Thornton <august@instructure.com>
QA-Review: August Thornton <august@instructure.com>
Product-Review: Brad Horrocks <bhorrocks@instructure.com>
Tested-by: Jenkins
This commit is contained in:
Brad Horrocks 2016-03-08 16:30:17 -07:00
parent 60e66140c0
commit a316dfd28c
1 changed files with 22 additions and 0 deletions

22
gems/README.md Normal file
View File

@ -0,0 +1,22 @@
# Gems
## Testing
To test all the gems:
```
cd gems
./test_all_gems.sh
```
### To test an individual gem
Run `./test.sh` inside the gem's folder. This is _basically_ the same as:
```bash
cd gems/google_drive
bundle
rspec
```