2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/spec/tasks/posts_spec.rb
2017-07-28 10:20:09 +09:00

18 lines
451 B
Ruby

require 'rails_helper'
RSpec.describe "Post rake tasks" do
before do
Discourse::Application.load_tasks
IO.any_instance.stubs(:puts)
end
describe 'remap' do
it 'should remap posts' do
post = Fabricate(:post, raw: "The quick brown fox jumps over the lazy dog")
Rake::Task['posts:remap'].invoke("brown", "red")
post.reload
expect(post.raw).to eq('The quick red fox jumps over the lazy dog')
end
end
end