Sha256: 92feb3f93e4400283816bb9bdd282fc4f70955ead3969bf00b65f253d09cc9df

Contents?: true

Size: 528 Bytes

Versions: 1

Compression:

Stored size: 528 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '../../spec_helper')

describe "Project", :vcr => { :allow_unused_http_interactions => true } do

  before(:all) do
    VCR.use_cassette("Project/authorize_config") do
      config_setup
      @auth = BigBroda::Auth.new
      @auth.authorize
      @project = config_options["email"].match(/(\d*)/)[0]
    end
  end

  before :each do
    @name = "rspec_schema"
  end

  it ".list", :vcr do
    expect(
      BigBroda::Project.list["projects"].class
    ).to be Array
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bigbroda-0.1.0.pre spec/functional/project_spec.rb