Sha256: 1e83d73e0a061dd7602a77f128000727e9364655296e2cd3772f972c1e86fe6f
Contents?: true
Size: 559 Bytes
Versions: 3
Compression:
Stored size: 559 Bytes
Contents
require File.expand_path('../../spec_helper', __FILE__) module Quickl describe "Command::usage /" do it "should be installed from inline rdoc" do MiniClient::Say::Hello.usage.should == "mini-client say:hello" MiniClient::Say::Goodbye.usage.should == "mini-client say:goodbye" end it "should be accessible on instance" do MiniClient::Say::Hello.new.usage.should == "mini-client say:hello" MiniClient::Say::Goodbye.new.usage.should == "mini-client say:goodbye" end end # Command::usage end # module Quickl
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
quickl-0.2.2 | spec/command/usage_spec.rb |
quickl-0.2.1 | spec/command/usage_spec.rb |
quickl-0.1.1 | test/command/usage.spec |