OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/modules/avatars/spec/models/user_spec.rb

31 lines
1002 B

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
require File.expand_path(File.dirname(__FILE__) + '/../shared_examples')
describe User, type: :model do
include_examples "there are users with and without avatars"
let(:user) { build :user }
specify { expect(user.attachments).to all be_a_kind_of Attachment }
describe "#local_avatar_attachment" do
subject { user.local_avatar_attachment }
context "WHEN user has an avatar" do
let(:user) { user_with_avatar }
it { is_expected.to be_a_kind_of Attachment }
end
context "WHEN user has no avatar" do
let(:user) { user_without_avatar }
it { is_expected.to be_blank }
end
end
describe "#local_avatar_attachment=" do
context "WHEN the uploaded file is a good image" do
subject { lambda { user.local_avatar_attachment = avatar_file } }
it { is_expected.not_to raise_error }
specify { is_expected.to change(user, :local_avatar_attachment) }
end
end
end