2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe ChatTeam do
|
2018-03-17 18:26:18 +05:30
|
|
|
set(:chat_team) { create(:chat_team) }
|
|
|
|
subject { chat_team }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
# 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
|