You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
699 B
30 lines
699 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
require 'mastodon/cli/upgrade' |
|
|
|
RSpec.describe Mastodon::CLI::Upgrade do |
|
subject { cli.invoke(action, arguments, options) } |
|
|
|
let(:cli) { described_class.new } |
|
let(:arguments) { [] } |
|
let(:options) { {} } |
|
|
|
it_behaves_like 'CLI Command' |
|
|
|
describe '#storage_schema' do |
|
let(:action) { :storage_schema } |
|
|
|
context 'with records that dont need upgrading' do |
|
before do |
|
Fabricate(:account) |
|
Fabricate(:media_attachment) |
|
end |
|
|
|
it 'does not upgrade storage for the attachments' do |
|
expect { subject } |
|
.to output_results('Upgraded storage schema of 0 records') |
|
end |
|
end |
|
end |
|
end
|
|
|