Sha256: a787e8d434ed8621bb8e159d0f3cf79f8a25d1ea3099e44031194c8b01b67022

Contents?: true

Size: 299 Bytes

Versions: 2

Compression:

Stored size: 299 Bytes

Contents

require 'spec_helper'
require 'pymn/chain_of_responsibility'

module Pymn
  module ChainOfResponsibility
    describe CommandNotHandledError do
      subject { CommandNotHandledError.new(:the_command) }

      its(:message) { should include "'the_command' could not be handled" }
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pymn-0.0.2 spec/chain_of_responsibility/command_not_handled_error_spec.rb
pymn-0.0.1 spec/chain_of_responsibility/command_not_handled_error_spec.rb