Sha256: b2e31ec7d042e5fe9aea3c58bf593b1abaf434810f6977f1a1713b5f94abf09a
Contents?: true
Size: 1.63 KB
Versions: 13
Compression:
Stored size: 1.63 KB
Contents
require 'spec_helper' describe Legato::Management::WebProperty do context "The WebProperty class" do def self.subject_class_name "web properties" end it_behaves_like "a management finder" it 'creates a new web property instance from a hash of attributes' do user = stub web_property = Legato::Management::WebProperty.new({ "id" => "UA-123456-2", "name" => "WebProperty 1", "websiteUrl" => "http://google.com", "accountId" => "123456", "profileCount" => 8, "industryVertical" => "ecommerce" }, user) web_property.user.should == user web_property.id.should == "UA-123456-2" web_property.name.should == "WebProperty 1" web_property.website_url.should == 'http://google.com' web_property.account_id.should == "123456" web_property.attributes['profileCount'].should == 8 web_property.attributes['industryVertical'].should == "ecommerce" end it 'returns an array of all web properties available to a user under an account' do account = stub(:user => 'user', :path => 'accounts/12345') Legato::Management::WebProperty.stubs(:all) Legato::Management::WebProperty.for_account(account) Legato::Management::WebProperty.should have_received(:all).with('user', 'accounts/12345/webproperties') end end context "A WebProperty instance" do it 'builds the path for the web_property from the id' do web_property = Legato::Management::WebProperty.new({"id" => "UA-123456-5", "accountId" => "123456"}, stub) web_property.path.should == '/accounts/123456/webproperties/UA-123456-5' end end end
Version data entries
13 entries across 13 versions & 2 rubygems