spec/unit/indexes_spec.rb in mongoid-rspec-2.0.0 vs spec/unit/indexes_spec.rb in mongoid-rspec-2.1.0
- old
+ new
@@ -1,13 +1,17 @@
require 'spec_helper'
-describe "Indexes" do
+RSpec.describe "Indexes" do
describe Article do
- it { should have_index_for(published: 1) }
- it { should have_index_for(title: 1).with_options(unique: true, background: true, dropDups: true) }
- it { should have_index_for('permalink._id' => 1) }
+ it { is_expected.to have_index_for(published: 1) }
+ it { is_expected.to have_index_for(title: 1).with_options(unique: true, background: true, drop_dups: true) }
+ it { is_expected.to have_index_for('permalink._id' => 1) }
end
describe Profile do
- it { should have_index_for(first_name: 1, last_name: 1) }
+ it { is_expected.to have_index_for(first_name: 1, last_name: 1) }
end
-end
\ No newline at end of file
+
+ describe Log do
+ it { is_expected.to have_index_for(created_at: 1).with_options(bucket_size: 100, expire_after_seconds: 3600) }
+ end
+end