Sha256: 127998f839747b3064539da29f02b204de7fcedfbc902ae2b8c8758408cb65ab

Contents?: true

Size: 438 Bytes

Versions: 4

Compression:

Stored size: 438 Bytes

Contents

require 'spec_helper'

# to run specs with what's remembered from vcr
#   $ rake
# 
# to run specs with new fresh data from aws api calls
#   $ rake clean:vcr ; time rake
describe ThorTemplate::CLI do
  before(:all) do
    @args = "--noop"
  end

  describe "thor_template" do
    it "should create base" do
      out = execute("bin/thor_template base #{@args}")
      out.should include("Creating base thor_template!")
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
thor_template-0.0.4 lib/starter_project/spec/lib/cli_spec.rb
thor_template-0.0.3 lib/starter_project/spec/lib/cli_spec.rb
thor_template-0.0.2 lib/starter_project/spec/lib/cli_spec.rb
thor_template-0.0.1 lib/starter_project/spec/lib/cli_spec.rb