aboutsummaryrefslogtreecommitdiffstats
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorRobert2017-05-02 12:15:09 +0200
committerRobert2017-05-02 16:40:10 +0200
commit9b95304792865eb05305d8fea01c634a5c5d1829 (patch)
tree63b44ad698c360626980ee6101ace13e49b83308 /spec/spec_helper.rb
parenta647f932dc8206583f727a4af64a200b6ec6857b (diff)
downloadchouette-core-9b95304792865eb05305d8fea01c634a5c5d1829.tar.bz2
Refs #3053
passes current_organization down from the controller into Reference.new_from adds joint models *ReferenceMemeberships to excluded Apartment models
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index f66d721c9..cda753efe 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -51,8 +51,11 @@ RSpec.configure do |config|
#Capybara.exact = true
Capybara.javascript_driver = :poltergeist
- config.filter_run_excluding :js => true
- config.filter_run :wip => true
+ # :meta tests can be run seperately in case of doubt about the tests themselves
+ # they serve mainly as an explanataion of complicated tests (as e.g. PG information_schema introspection)
+ config.filter_run_excluding :meta => true
+ config.filter_run_excluding :js => true
+ config.filter_run :wip => true
config.run_all_when_everything_filtered = true
config.include TokenInputHelper, :type => :feature