From 63cd262f76422d560ab39d014770da12a5eaf9b7 Mon Sep 17 00:00:00 2001 From: Martin Cozzi Date: Tue, 29 Jul 2014 08:13:47 -0700 Subject: [PATCH] Updates README.md with information to run tests This includes unit tests as well as integration tests. --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cfd8813..d33c397 100644 --- a/README.md +++ b/README.md @@ -61,4 +61,16 @@ For example, to set your email and token for the 'token' => '1234567890ABCDEF' } } -``` \ No newline at end of file +``` + +# Test + +To run unit tests using rspec you can run: +```bash +$ bundle exec rspec +``` + +To run integration tests using kitchen-ci you can run: +```bash +$ bundle exec kitchen test +```