12 lines
240 B
Ruby
12 lines
240 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe CastingCall, type: :model do
|
|
describe "associations" do
|
|
it { is_expected.to belong_to(:project) }
|
|
end
|
|
|
|
describe "validations" do
|
|
it { is_expected.to have_secure_token(:token) }
|
|
end
|
|
end
|