Sha256: b63c58708d82ffd7b9ad8685a8a7e86c9fc13c284784b4d05dd52b676cacdb12

Contents?: true

Size: 1.32 KB

Versions: 12

Compression:

Stored size: 1.32 KB

Contents

require 'spec_helper'
require 'active_admin/event'

describe ActiveAdmin::EventDispatcher do

  let(:test_event){ 'active_admin.test_event' }
  let(:dispatcher){ ActiveAdmin::EventDispatcher.new }

  it "should add a subscriber for an event" do
    dispatcher.subscribers(test_event).size.should == 0
    dispatcher.subscribe(test_event){ true }
    dispatcher.subscribers(test_event).size.should == 1
  end

  it "should call the dispatch block with no arguments" do
    dispatcher.subscribe(test_event){ raise StandardError, "From Event Handler" }
    lambda {
      dispatcher.dispatch(test_event)
    }.should raise_error(StandardError, "From Event Handler")
  end

  it "should call the dispatch block with one argument" do
    arg = nil
    dispatcher.subscribe(test_event){|passed_in| arg = passed_in }
    dispatcher.dispatch(test_event, "My Arg")
    arg.should == "My Arg"
  end

  it "should clear all subscribers" do
    dispatcher.subscribe(test_event){ false }
    dispatcher.subscribe(test_event + "_2"){ false }
    dispatcher.clear_all_subscribers!
    dispatcher.subscribers(test_event).size.should == 0
    dispatcher.subscribers(test_event + "_2").size.should == 0
  end

  it "should have a dispatcher available from ActiveAdmin::Event" do
    ActiveAdmin::Event.should be_an_instance_of(ActiveAdmin::EventDispatcher)
  end

end

Version data entries

12 entries across 12 versions & 4 rubygems

Version Path
andrewroth_activeadmin-0.3.4 spec/unit/event_spec.rb
activeadmin-0.3.4 spec/unit/event_spec.rb
activeadmin-0.3.3 spec/unit/event_spec.rb
activeadmin-0.3.2 spec/unit/event_spec.rb
activeadmin-0.3.1 spec/unit/event_spec.rb
activeadmin-0.3.0 spec/unit/event_spec.rb
nsm-activeadmin-0.2.2 spec/unit/event_spec.rb
saulolso-activeadmin-0.2.2.1 spec/unit/event_spec.rb
saulolso-activeadmin-0.2.2 spec/unit/event_spec.rb
activeadmin-0.2.2 spec/unit/event_spec.rb
activeadmin-0.2.1 spec/unit/event_spec.rb
activeadmin-0.2.0 spec/unit/event_spec.rb