Sha256: 57b13c11558e599b4b79323b06086390b3cf48ce4cde5e85f33c862633e7045d
Contents?: true
Size: 907 Bytes
Versions: 1
Compression:
Stored size: 907 Bytes
Contents
require "spec_helper" describe UniformNotifier::Raise do it "should not notify message" do UniformNotifier::Raise.out_of_channel_notify("notification").should be_nil end it "should raise error of the default class" do UniformNotifier.raise = true expect { UniformNotifier::Raise.out_of_channel_notify("notification") }.to raise_error(UniformNotifier::Exception, "notification") end it "allows the user to override the default exception class" do klass = Class.new(Exception) UniformNotifier.raise = klass expect { UniformNotifier::Raise.out_of_channel_notify("notification") }.to raise_error(klass, "notification") end it "can be turned from on to off again" do UniformNotifier.raise = true UniformNotifier.raise = false expect { UniformNotifier::Raise.out_of_channel_notify("notification") }.not_to raise_error end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
uniform_notifier-1.5.0 | spec/uniform_notifier/raise_spec.rb |