explain how to run tests for a given plugin

See
https://meta.discourse.org/t/how-do-i-run-only-discourse-plugins-poll-spec/47244/5
for the corresponding discussion.

Signed-off-by: Loic Dachary <loic@dachary.org>
This commit is contained in:
Loic Dachary 2016-07-13 23:24:15 +02:00
parent d4a80f9c6e
commit 7c7aaec7f1
1 changed files with 12 additions and 0 deletions

View File

@ -118,6 +118,18 @@ RAILS_ENV=test bundle exec rake db:migrate
bundle exec rake autospec p l=5
```
When developing a plugin (the *poll* plugin for instance), the following can be used to only run all tests from the *spec* directory:
```
bundle exec rake plugin:spec poll
```
or just a single file with:
```
LOAD_PLUGINS=1 bundle exec rspec plugins/poll/spec/controllers/posts_controller_spec.rb
```
For more insight into testing Discourse, see [this discussion](http://rubyrogues.com/117-rr-discourse-part-2-with-sam-saffron-and-robin-ward/) with the Ruby Rogues.
### Sending Email