diff options
| author | Alban Peignier | 2018-04-25 23:42:44 +0200 | 
|---|---|---|
| committer | Alban Peignier | 2018-04-26 00:45:13 +0200 | 
| commit | b0f53ae97c36cbe2e94fc4fd6104b70a9589b92c (patch) | |
| tree | 300a60942d93f8cbd6450c6b0df5303fa09a87a9 /spec/models/clean_up_spec.rb | |
| parent | 0c40a4a977405972158a0a653b67ccf268f8645b (diff) | |
| download | chouette-core-b0f53ae97c36cbe2e94fc4fd6104b70a9589b92c.tar.bz2 | |
Fixes problems in CleanUp specs. Refs #5372
Diffstat (limited to 'spec/models/clean_up_spec.rb')
| -rw-r--r-- | spec/models/clean_up_spec.rb | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/spec/models/clean_up_spec.rb b/spec/models/clean_up_spec.rb index 2753c8718..afd2d8721 100644 --- a/spec/models/clean_up_spec.rb +++ b/spec/models/clean_up_spec.rb @@ -98,7 +98,13 @@ RSpec.describe CleanUp, :type => :model do    end    context '#clean' do -    let(:cleaner) { create(:clean_up, date_type: :before) } +    let(:referential) { Referential.new } +    let(:cleaner) { create(:clean_up, date_type: :before, referential: referential) } + +    before do +      allow(referential).to receive(:switch) +    end +      it 'should call destroy_time_tables_before' do        cleaner.date_type = :before | 
