Sha256: 785926263720d1f92e0526dd4cf995dc2fea5306ec51990562823e582016acca
Contents?: true
Size: 1 KB
Versions: 6
Compression:
Stored size: 1 KB
Contents
require 'spec_helper' require 'rails_helper' RSpec.describe StaticRecord::Querying, :type => :module do it 'responds to \'ActiveRecord\' methods through StaticRecord::Relation' do expect(Article.methods.include?(:where)).to be false expect(Article.respond_to?(:where)).to be true expect(Article.respond_to_missing?(:where)).to be true end it 'asks superclass for other methods' do expect(Article.respond_to?(:inexisting_method)).to be false expect(Article.respond_to_missing?(:inexisting_method)).to be false end it 'delegates requests to StaticRecord::Relation' do expect(Article.where(author: 'The author')).to be_a(StaticRecord::Relation) end it 'returns a new StaticRecord::Relation for each method chaining node' do first_node = Article.where(author: 'The author') expect(first_node).to be_a(StaticRecord::Relation) second_node = first_node.where(rank: 3) expect(second_node).to be_a(StaticRecord::Relation) expect(second_node).not_to eql(first_node) end end
Version data entries
6 entries across 6 versions & 1 rubygems