Sha256: 8b7aca83f0f66aed2238e0f049632e459e338d6295d7913a158c4210301492fe

Contents?: true

Size: 1.01 KB

Versions: 19

Compression:

Stored size: 1.01 KB

Contents

describe ActivityNotification::ActsAsNotifier do
  let(:dummy_model_class) { Dummy::DummyBase }

  describe "as public class methods" do
    describe ".acts_as_notifier" do
      it "have not included Notifier before calling" do
        expect(dummy_model_class.respond_to?(:available_as_notifier?)).to be_falsey
      end

      it "includes Notifier" do
        dummy_model_class.acts_as_notifier
        expect(dummy_model_class.respond_to?(:available_as_notifier?)).to be_truthy
        expect(dummy_model_class.available_as_notifier?).to be_truthy
      end

      context "with no options" do
        it "returns hash of specified options" do
          expect(dummy_model_class.acts_as_notifier).to eq({})
        end
      end

      #TODO test other options
    end

    describe ".available_notifier_options" do
      it "returns list of available options in acts_as_group" do
        expect(dummy_model_class.available_notifier_options)
          .to eq([:printable_notifier_name, :printable_name])
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
activity_notification-2.0.0 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.7.1 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.7.0 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.6.1 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.6.0 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.5.1 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.5.0 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.4.4 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.4.3 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.4.2 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.4.1 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.4.0 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.3.0 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.2.1 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.2.0 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.1.0 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.0.2 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.0.1 spec/roles/acts_as_notifier_spec.rb
activity_notification-1.0.0 spec/roles/acts_as_notifier_spec.rb