Sha256: 7c55a24aa28416fbcfd3ae8aff4fd5c1b576fb387a7613b1073818bed738fc3d
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
Contents
require 'rails_helper' RSpec.describe ActiveAdmin::ScopeChain do include ActiveAdmin::ScopeChain describe "#scope_chain" do let(:relation) { double } context "when Scope has a scope method" do let(:scope) { ActiveAdmin::Scope.new :published } it "should call the method on the relation and return it" do expect(relation).to receive(:published).and_return(:scoped_relation) expect(scope_chain(scope, relation)).to eq :scoped_relation end end context "when Scope has the scope method method ':all'" do let(:scope) { ActiveAdmin::Scope.new :all } it "should return the relation" do expect(scope_chain(scope, relation)).to eq relation end end context "when Scope has a name and a scope block" do let(:scope) { ActiveAdmin::Scope.new("My Scope"){|s| :scoped_relation } } it "should instance_exec the block and return it" do expect(scope_chain(scope, relation)).to eq :scoped_relation end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
activeadmin-1.0.0 | spec/unit/helpers/scope_chain_spec.rb |
activeadmin-1.0.0.pre5 | spec/unit/helpers/scope_chain_spec.rb |