File: client_spec.rb

package info (click to toggle)
ruby-behance 0.6.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,344 kB
  • sloc: ruby: 715; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec_helper'

describe Behance::Client do

  before do
    @client = Behance::Client.new(access_token: "abc123")
  end

  it "initializes properly" do
    @client.should be_a_kind_of Behance::Client
  end

end