require 'test_helper' describe Fanforce::API do it 'should test if var is blank' do assert Fanforce.is_blank?(nil) assert !Fanforce.is_blank?('value') ff = Fanforce::API.new assert ff.is_blank?(nil) assert !ff.is_blank?('value') end it 'should create new instance of fanforce with api_key' do assert Fanforce::API.new('13d90b01-6df7-4618-881c-c79320a0dc21') end end