mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
20 lines
451 B
Ruby
20 lines
451 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe Connection, type: :model do
|
|
let(:connection) { build :connection }
|
|
|
|
it 'is valid' do
|
|
expect(connection).to be_valid
|
|
end
|
|
|
|
it 'should be of class Connection' do
|
|
expect(subject.class).to eq Connection
|
|
end
|
|
|
|
describe 'Relations' do
|
|
it { is_expected.to belong_to(:to).class_name('MyModule') }
|
|
it { is_expected.to belong_to(:from).class_name('MyModule') }
|
|
end
|
|
end
|