mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
13 lines
268 B
Ruby
13 lines
268 B
Ruby
require 'spec_helper'
|
|
|
|
describe Jobs::ExportCsvFile do
|
|
|
|
context '.execute' do
|
|
|
|
it 'raises an error when the entity is missing' do
|
|
lambda { Jobs::ExportCsvFile.new.execute(user_id: "1") }.should raise_error(Discourse::InvalidParameters)
|
|
end
|
|
|
|
end
|
|
end
|
|
|