mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 15:45:19 +08:00
12 lines
280 B
Ruby
12 lines
280 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec.describe "Migrations::Import" do
|
||
|
subject(:cli) { system "migrations/import" }
|
||
|
|
||
|
it "works" do
|
||
|
expect { cli }.to output(
|
||
|
include("Importing into Discourse #{Discourse::VERSION::STRING}"),
|
||
|
).to_stdout_from_any_process
|
||
|
end
|
||
|
end
|