Sha256: 09e64ca564d7c9be2b63786c5b43ac6a052c2852cd4b33c06340345a2c8f9e1e
Contents?: true
Size: 792 Bytes
Versions: 27
Compression:
Stored size: 792 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require "spec_helper" describe Mongoid::Errors::UnsupportedJavascript do describe "#message" do let(:error) do described_class.new(Address, "this.street == null") end it "contains the problem in the message" do expect(error.message).to include( "Executing Javascript $where selector on an embedded criteria is not supported" ) end it "contains the summary in the message" do expect(error.message).to include( "Mongoid only supports providing a hash of arguments to #where" ) end it "contains the resolution in the message" do expect(error.message).to include( "Please provide a standard hash to #where when the criteria" ) end end end
Version data entries
27 entries across 27 versions & 2 rubygems