32 lines
1.1 KiB
Ruby
32 lines
1.1 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "OrganizationsUpdate", type: :request do
|
|
let(:organization) { create(:organization) }
|
|
let(:user) { create(:user, organization_id: organization.id) }
|
|
let(:article) { create(:article, user_id: user.id) }
|
|
let(:comment) { create(:comment, user_id: user.id, commentable_id: article.id) }
|
|
|
|
before do
|
|
user.org_admin = true
|
|
sign_in user
|
|
end
|
|
|
|
it "updates org color with proper params" do
|
|
put "/organizations/#{organization.id}", params: {
|
|
organization: { text_color_hex: "#111111" }
|
|
}
|
|
expect(Organization.last.text_color_hex).to eq("#111111")
|
|
end
|
|
|
|
it "generates new secret" do
|
|
secret = Organization.last.secret
|
|
post "/organizations/generate_new_secret"
|
|
expect(Organization.last.secret).not_to eq(secret)
|
|
end
|
|
|
|
it "updates profile_updated_at" do
|
|
organization.update_column(:profile_updated_at, 2.weeks.ago)
|
|
put "/organizations/#{organization.id}", params: { organization: { text_color_hex: "#111111" } }
|
|
expect(organization.reload.profile_updated_at).to be > 2.minutes.ago
|
|
end
|
|
end
|