Sha256: 93f5508e494a88ab7acf3d103988a35156571939de84b8843cb28fe87197db6a
Contents?: true
Size: 1.78 KB
Versions: 4
Compression:
Stored size: 1.78 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "Ticketmaster::Provider::Zendesk::Comment" do before(:all) do @project_id = 'hybridgroup-project' @ticket_id = 1 headers = {'Authorization' => 'Basic cmFmYWVsQGh5YnJpZGdyb3VwLmNvbToxMjM0NTY=','Accept' => 'application/json'} ActiveResource::HttpMock.respond_to do |mock| mock.get '/tickets/1.json', headers, fixture_for('ticket','json'), 200 end end before(:each) do @ticketmaster = TicketMaster.new(:zendesk, :account => 'hybridgroup', :username => 'rafael@hybridgroup.com', :password => '123456') project = @ticketmaster.project(@project_id) @ticket = project.ticket(@ticket_id) @klass = TicketMaster::Provider::Zendesk::Comment end it "should be able to load all comments" do comments = @ticket.comments comments.should be_an_instance_of(Array) comments.first.should be_an_instance_of(@klass) end it "should be able to load all comments based on an array of id's" do comments = @ticket.comments([1]) comments.should be_an_instance_of(Array) comments.first.should be_an_instance_of(@klass) comments.first.id.should == 1 end it "should be able to load all comments based on attributes" do comments = @ticket.comments(:ticket_id => @ticket.id) comments.should be_an_instance_of(Array) comments.first.should be_an_instance_of(@klass) comments.first.id.should == 1 end it "should be able to load a comment based on id" do comment = @ticket.comment(1) comment.should be_an_instance_of(@klass) comment.id.should == 1 end it "should be able to load a ticket based on attributes" do comment = @ticket.comment(:ticket_id => 1) comment.should be_an_instance_of(@klass) comment.id.should == 1 end end
Version data entries
4 entries across 4 versions & 1 rubygems