10 lines
412 B
Ruby
10 lines
412 B
Ruby
RSpec.configure do |config|
|
|
# Add the :consul tag to tests which make sense in the original
|
|
# version of CONSUL DEMOCRACY but don't make sense in your application
|
|
# due to the custom changes you've implemented.
|
|
#
|
|
# Using this tag will help maintaining the test suite when doing custom
|
|
# changes and when upgrading to a newer version of CONSUL DEMOCRACY
|
|
config.filter_run_excluding consul: true
|
|
end
|