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