Sha256: d0244b6f15234976b898c18267463f474257a666c6c1cbfbeb971bef0e572088

Contents?: true

Size: 505 Bytes

Versions: 1

Compression:

Stored size: 505 Bytes

Contents

require 'corundum'
require 'corundum/tasklibs'

module Corundum
  describe "A fairly complete Rakefile" do
    before :each do
      tk = Toolkit.new do |tk|
        tk.gemspec_path = "corundum.gemspec"
      end

      tk.in_namespace do
        rspec = RSpec.new(tk)
        cov = SimpleCov.new(tk, rspec)
        gem = GemBuilding.new(tk)
        cutter = GemCutter.new(tk, gem)
        vc = Git.new(tk)
      end
    end

    it "should have some tasks" do
      true.should be_true
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
corundum-0.4.1 spec/smoking_spec.rb