spec/unit/batch_actions/settings_spec.rb in activeadmin-1.0.0.pre2 vs spec/unit/batch_actions/settings_spec.rb in activeadmin-1.0.0.pre3

- old
+ new

@@ -6,56 +6,56 @@ let(:post_resource) { ns.register Post } it "should be disabled globally by default" do # Note: the default initializer would set it to true - expect(app.batch_actions).to be_falsey - expect(ns.batch_actions).to be_falsey - expect(post_resource.batch_actions_enabled?).to be_falsey + expect(app.batch_actions).to eq false + expect(ns.batch_actions).to eq false + expect(post_resource.batch_actions_enabled?).to eq false end it "should be settable to true" do app.batch_actions = true - expect(app.batch_actions).to be_truthy + expect(app.batch_actions).to eq true end it "should be an inheritable_setting" do app.batch_actions = true - expect(ns.batch_actions).to be_truthy + expect(ns.batch_actions).to eq true end it "should be settable at the namespace level" do app.batch_actions = true ns.batch_actions = false - expect(app.batch_actions).to be_truthy - expect(ns.batch_actions).to be_falsey + expect(app.batch_actions).to eq true + expect(ns.batch_actions).to eq false end it "should be settable at the resource level" do - expect(post_resource.batch_actions_enabled?).to be_falsey + expect(post_resource.batch_actions_enabled?).to eq false post_resource.batch_actions = true - expect(post_resource.batch_actions_enabled?).to be_truthy + expect(post_resource.batch_actions_enabled?).to eq true end it "should inherit the setting on the resource from the namespace" do ns.batch_actions = false - expect(post_resource.batch_actions_enabled?).to be_falsey + expect(post_resource.batch_actions_enabled?).to eq false expect(post_resource.batch_actions).to be_empty post_resource.batch_actions = true - expect(post_resource.batch_actions_enabled?).to be_truthy + expect(post_resource.batch_actions_enabled?).to eq true expect(post_resource.batch_actions).to_not be_empty end it "should inherit the setting from the namespace when set to nil" do ns.batch_actions = true post_resource.batch_actions = true - expect(post_resource.batch_actions_enabled?).to be_truthy + expect(post_resource.batch_actions_enabled?).to eq true expect(post_resource.batch_actions).to_not be_empty post_resource.batch_actions = nil - expect(post_resource.batch_actions_enabled?).to be_truthy # inherited from namespace + expect(post_resource.batch_actions_enabled?).to eq true # inherited from namespace expect(post_resource.batch_actions).to_not be_empty end end