Sha256: e45de20c60f789174e672caf22d9ae4e2fa12e215e01d4e17ac910ad5f5949c2
Contents?: true
Size: 474 Bytes
Versions: 1
Compression:
Stored size: 474 Bytes
Contents
require 'unit_test_helper' class PrivateApplicationTest < Test::Unit::TestCase include TestHelper def setup @client = Xeroizer::PrivateApplication.new(CONSUMER_KEY, CONSUMER_SECRET, PRIVATE_KEY_PATH) end context "initialization" do should "have a valid client" do assert_kind_of(Xeroizer::OAuth, @client.client) assert_equal(CONSUMER_KEY, @client.client.ctoken) assert_equal(CONSUMER_SECRET, @client.client.csecret) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xeroizer-3-pre-beta-3.0.0.pre.beta | test/unit/private_application_test.rb |