File: command_spec.rb

package info (click to toggle)
ruby-naught 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: ruby: 1,091; makefile: 6
file content (10 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
require 'spec_helper'

module Naught
  describe NullClassBuilder::Command do
    it 'is abstract' do
      command = NullClassBuilder::Command.new(nil)
      expect { command.call }.to raise_error(NotImplementedError)
    end
  end
end