Sha256: cb84368bd15ef8f63c6ec1da7fd2aeec88d71836ee677b8e1c210b070cda3cd7
Contents?: true
Size: 987 Bytes
Versions: 2
Compression:
Stored size: 987 Bytes
Contents
require 'spec_helper' describe Article do subject { Article.new } it_behaves_like 'with_access_rights' it_behaves_like 'is_embargoable' it_behaves_like 'has_common_solr_fields' it_behaves_like 'it has linked contributors' it { should have_unique_field(:human_readable_type) } it { should have_unique_field(:abstract) } it { should have_unique_field(:title) } it { should have_unique_field(:journal_information) } it { should have_unique_field(:date_uploaded) } it { should have_unique_field(:date_modified) } it { should have_unique_field(:date_digitized) } it { should have_unique_field(:identifier) } it { should have_unique_field(:issn) } it { should have_multivalue_field(:contributor) } it { should have_multivalue_field(:subject) } it { should have_multivalue_field(:publisher) } it { should have_multivalue_field(:language) } it { should have_multivalue_field(:requires) } it { should have_multivalue_field(:recommended_citation) } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
curate-0.5.0 | spec/repository_models/article_spec.rb |
curate-0.4.2 | spec/repository_models/article_spec.rb |