Sha256: a955874e1d509f451a8a8854eb6a1b1e43c918290175e87a9e277291814d6f00

Contents?: true

Size: 494 Bytes

Versions: 3

Compression:

Stored size: 494 Bytes

Contents

$hello_doc = <<EOF

Say hello to the user whose name is requested on the standard input

SYNOPSIS
  mini-client say:hello

DESCRIPTION
  And an explanation here
  on multiple lines with replacement: hello

EOF

require File.expand_path('../../spec_helper', __FILE__)
module Quickl
  describe "Command::documentation /" do
    
    it "should be correctly installed" do
      MiniClient::Say::Hello.documentation.should == $hello_doc[0..-1]
    end

  end # Command::command
end # module Quickl

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
quickl-0.2.2 spec/command/documentation_spec.rb
quickl-0.2.1 spec/command/documentation_spec.rb
quickl-0.1.1 test/command/documentation.spec