Ed-ITSolutions/KashflowAPI

View on GitHub
spec-old/kashflow_api_quote_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'spec_helper'

describe KashflowApi::Quote do
    before :each do
       default_config 
    end
    
    it "should create a blank quote for new" do
        quote = KashflowApi::Quote.new
        quote.should be_a KashflowApi::Quote
    end
end