Ed-ITSolutions/KashflowAPI

View on GitHub
spec-old/kashflow_api_nominal_codes_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'spec_helper'

describe KashflowApi::CustomerBalance do
    before :each do
        default_config
    end
    
    it "should find all nominal codes" do
        all = KashflowApi::NominalCode.all
        all.should be_a Array
        all.first.should be_a KashflowApi::NominalCode
    end
end