18 lines
395 B
Ruby
18 lines
395 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe ChatTeam do
|
|
let_it_be(:chat_team) { create(:chat_team) }
|
|
subject { chat_team }
|
|
|
|
# Associations
|
|
it { is_expected.to belong_to(:namespace) }
|
|
|
|
# Validations
|
|
it { is_expected.to validate_uniqueness_of(:namespace) }
|
|
|
|
# Fields
|
|
it { is_expected.to respond_to(:name) }
|
|
it { is_expected.to respond_to(:team_id) }
|
|
end
|