Sha256: bb8e2732d792af79bd9bb881df89523323f7fdd6147e4b85c611302727ffd9cf

Contents?: true

Size: 520 Bytes

Versions: 1

Compression:

Stored size: 520 Bytes

Contents

require File.expand_path('../../spec_helper', __FILE__)
module Quickl
  describe "Command::subcommands /" do
    
    it "should return installed commands in an array" do
      MiniClient.subcommands.should == [ 
        MiniClient::Help, 
        MiniClient::Say 
      ]
    end
    
    it "should return installed commands in an array" do
      MiniClient::Say.subcommands.should == [ 
        MiniClient::Say::Hello,
        MiniClient::Say::Goodbye
      ]
    end

  end # Command::subcommand
end # module Quickl

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
quickl-0.1.1 test/command/subcommands.spec