From a316dfd28cc77cb29be0bef53526a7e8e29299e5 Mon Sep 17 00:00:00 2001 From: Brad Horrocks Date: Tue, 8 Mar 2016 16:30:17 -0700 Subject: [PATCH] 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 QA-Review: August Thornton Product-Review: Brad Horrocks Tested-by: Jenkins --- gems/README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 gems/README.md diff --git a/gems/README.md b/gems/README.md new file mode 100644 index 00000000000..974d333f248 --- /dev/null +++ b/gems/README.md @@ -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 +``` + +