Sha256: 7d0f53479e08c0ff838b74736ffec4836c98e567ffade9af7591a15d4bc9cde2
Contents?: true
Size: 1.65 KB
Versions: 3
Compression:
Stored size: 1.65 KB
Contents
require 'spec_helper' describe StatRaptor::Client::Projects do let(:client) { StatRaptor::Client.new } context "#create_project", :vcr do before do @user = client.create_user(:email => random_email, :chargify_api_key => "ABC123") @user["user_credentials"].should_not be_nil end it "returns a project hash on success" do project = client.create_project(:user_credentials => @user["user_credentials"], :project => { :name => "Zippy Sunday", :subdomain => "zippy-sunday", :component => "basic" }) project["name"].should == "Zippy Sunday" project["subdomain"].should == "zippy-sunday" project["component"].should == "basic" end end context "#delete_project", :vcr do it "returns the project hash on success" do user = client.create_user(:email => random_email, :chargify_api_key => "ABC123") project = client.create_project(:user_credentials => user["user_credentials"], :project => { :name => "Modern Marvels", :subdomain => "modern-marvels", :component => "advanced" }) deleted_project = client.delete_project(:user_credentials => user["user_credentials"], :subdomain => "modern-marvels") deleted_project["name"].should == "Modern Marvels" deleted_project["subdomain"].should == "modern-marvels" deleted_project["component"].should == "advanced" end it "raises an unauthorized exception if the user credentials are incorrect" do lambda { client.delete_project(:user_credentials => "abc123", :subdomain => "modern-marvels") }.should raise_error(StatRaptor::Error::Unauthorized, "Invalid user API key specified") end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
statraptor-0.2.3 | spec/statrapator/client/projects_spec.rb |
statraptor-0.2.2 | spec/statrapator/client/projects_spec.rb |
statraptor-0.2.1 | spec/statrapator/client/projects_spec.rb |