require 'spec_helper' describe DispatchRider::NotificationServices::FileSystem::Notifier do subject { described_class.new({}) } describe "#channel" do it "returns a channel object" do subject.channel("tmp/some/path").should be_a(DispatchRider::NotificationServices::FileSystem::Channel) end end end