9 lines
181 B
Ruby
9 lines
181 B
Ruby
|
RSpec.configure do |config|
|
||
|
config.before(:all) do
|
||
|
# clear the cache otherwise it won't
|
||
|
# be able to recognize the rollbacks
|
||
|
# done by RSpec
|
||
|
Cache.clear
|
||
|
end
|
||
|
end
|