spec/unit/document_spec.rb in mongoid-rspec-1.5.0 vs spec/unit/document_spec.rb in mongoid-rspec-1.5.1
- old
+ new
@@ -1,18 +1,18 @@
require 'spec_helper'
describe "Document" do
describe User do
it { should have_fields(:email, :login) }
+ it { should be_timestamped_document }
+ it { should be_timestamped_document.with(:created) }
+ it { should_not be_timestamped_document.with(:updated) }
end
-
+
describe Article do
it { should have_field(:published).of_type(Boolean).with_default_value_of(false) }
- it { should have_field(:allow_comments).of_type(Boolean).with_default_value_of(true) }
+ it { should have_field(:allow_comments).of_type(Boolean).with_default_value_of(true) }
it { should_not have_field(:allow_comments).of_type(Boolean).with_default_value_of(false) }
- end
-
- describe Article do
it { should be_mongoid_document }
it { should be_versioned_document }
it { should be_timestamped_document }
it { should be_paranoid_document }
it { should be_multiparameted_document }