mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:18:23 +00:00
493d437e79
* Remove outdated option
04078317ba
* Use the non-globally exposed RSpec syntax
https://github.com/rspec/rspec-core/pull/2803
* Use the non-globally exposed RSpec syntax, cont
https://github.com/rspec/rspec-core/pull/2803
* Comply to strict predicate matchers
See:
- https://github.com/rspec/rspec-expectations/pull/1195
- https://github.com/rspec/rspec-expectations/pull/1196
- https://github.com/rspec/rspec-expectations/pull/1277
14 lines
323 B
Ruby
14 lines
323 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe CategoryUploadSerializer do
|
|
|
|
fab!(:upload) { Fabricate(:upload) }
|
|
let(:subject) { described_class.new(upload, root: false) }
|
|
|
|
it 'should include width and height' do
|
|
expect(subject.width).to eq(upload.width)
|
|
expect(subject.height).to eq(upload.height)
|
|
end
|
|
|
|
end
|