Merge pull request #4326 from dachary/wip-plugin-spec

explain how to run tests for a given plugin
This commit is contained in:
Guo Xiang Tan 2016-07-19 20:03:29 +08:00 committed by GitHub
commit 4e4b1cb4a3
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