12 lines
218 B
Ruby
12 lines
218 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe ModuleAPICarto do
|
||
|
describe 'assocations' do
|
||
|
it { is_expected.to belong_to(:procedure) }
|
||
|
end
|
||
|
|
||
|
describe 'attributes' do
|
||
|
it { is_expected.to have_db_column(:name) }
|
||
|
end
|
||
|
end
|