mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
10 lines
283 B
Ruby
10 lines
283 B
Ruby
require 'rails_helper'
|
|
require 'support/privacy_example'
|
|
require 'support/public_scope_example'
|
|
|
|
RSpec.describe Item, type: :model do
|
|
it_behaves_like 'content with privacy'
|
|
it_behaves_like 'content with an is_public scope'
|
|
it { is_expected.to validate_presence_of(:name) }
|
|
end
|