blob: 1aab161ec13966b19d99eb5cc89a8a09df60a7a7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require 'spec_helper'
describe ChatTeam, type: :model do
# Associations
it { is_expected.to belong_to(:namespace) }
# Fields
it { is_expected.to respond_to(:name) }
it { is_expected.to respond_to(:team_id) }
end
|