summaryrefslogtreecommitdiff
path: root/spec/lib/backup/task_spec.rb
blob: b0eb885d3f4ec86e787a5f5e13bf198640ef9b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Backup::Task do
  let(:progress) { StringIO.new }

  subject { described_class.new(progress) }

  describe '#human_name' do
    it 'must be implemented by the subclass' do
      expect { subject.human_name }.to raise_error(NotImplementedError)
    end
  end

  describe '#dump' do
    it 'must be implemented by the subclass' do
      expect { subject.dump('some/path') }.to raise_error(NotImplementedError)
    end
  end

  describe '#restore' do
    it 'must be implemented by the subclass' do
      expect { subject.restore('some/path') }.to raise_error(NotImplementedError)
    end
  end
end