Sha256: 77953ccee47e8b4e2dad649a4761a2f0eb289b309cc2684d9f457184c2d2c80b

Contents?: true

Size: 505 Bytes

Versions: 6

Compression:

Stored size: 505 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

describe "BuildCache" do
  it "should initialize" do
    bc = IosBox::BuildCache.new
    bc.kind_of == "IosBox::BuildCache"
  end
  
  it "should do simple storing" do
    bc = IosBox::BuildCache.new
    bc.var1 = "One"
    bc.var2 = "Two"
    
    bc.var1 eql "One"
    bc.var2 eql "Two"
  end
  
  it "should save itself to file" do
    bc = IosBox::BuildCache.new
    bc.project_dir = File.dirname(__FILE__)
    
    bc.save
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ios-box-0.2.4 spec/build_cache_spec.rb
ios-box-0.2.3 spec/build_cache_spec.rb
ios-box-0.2.1 spec/build_cache_spec.rb
ios-box-0.2.0 spec/build_cache_spec.rb
ios-box-0.1.0 spec/build_cache_spec.rb
ios-box-0.0.3 spec/build_cache_spec.rb