Sha256: 3ca02588ecd54e231af9d67dd5e6d647e61a55f06a93a5a397aa9519cff6a3a6

Contents?: true

Size: 510 Bytes

Versions: 11

Compression:

Stored size: 510 Bytes

Contents

require 'spec_helper'

module Blazing

  describe CLI do

    let(:cli) { CLI.new }
    it 'has an init method' do
      cli.respond_to? :init
    end

    it 'has a setup method' do
      cli.respond_to? :setup
    end

    it 'has an update method' do
      cli.respond_to? :update
    end

    it 'has a recipes method' do
      cli.respond_to? :recipes
    end

    it 'has a list method' do
      cli.respond_to? :list
    end

    it 'has a help method' do
      cli.respond_to? :help
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
blazing-0.4.2 spec/blazing/cli_spec.rb
blazing-0.4.1 spec/blazing/cli_spec.rb
blazing-0.4.0 spec/blazing/cli_spec.rb
blazing-0.4.0.beta3 spec/blazing/cli_spec.rb
blazing-0.4.0.beta2 spec/blazing/cli_spec.rb
blazing-0.4.0.beta1 spec/blazing/cli_spec.rb
blazing-0.3.0 spec/blazing/cli_spec.rb
blazing-0.2.14 spec/blazing/cli_spec.rb
blazing-0.2.13 spec/blazing/cli_spec.rb
blazing-0.2.12 spec/blazing/cli_spec.rb
blazing-0.2.11 spec/blazing/cli_spec.rb