Sha256: 748ade1ed71bbe4d98ff070c6f724d585dbf927479ff09e0d38fb7ef1e4441e9
Contents?: true
Size: 1.77 KB
Versions: 11
Compression:
Stored size: 1.77 KB
Contents
require 'spec_helper' describe PivotalTracker::Attachment do before do PivotalTracker::Client.token = TOKEN @project = PivotalTracker::Project.find(102622) @story = @project.stories.find(4460598) end context "always" do it "should return an integer id" do @story.attachments.first.id.should be_a(Integer) end it "should return a string for url" do @story.attachments.first.url.should be_a(String) end it "should return a string for filename" do @story.attachments.first.filename.should be_a(String) end it "should return a string for uploaded_by" do @story.attachments.first.uploaded_by.should be_a(String) end it "should return a datetime for uploaded_at" do @story.attachments.first.uploaded_at.should be_a(DateTime) end end context "without description" do it "should have a blank string for the description" do @story.attachments.first.description.should be_a(String) @story.attachments.first.description.should be_blank end end context "with description" do it "should have a non-blank string for the description" do @story.attachments.first.description.should be_a(String) @story.attachments.last.description.should_not be_blank end end context "uploading" do before do @target_story = @project.stories.find(4473735) @orig_net_lock = FakeWeb.allow_net_connect? end it "should return an attachment object with a pending status" do FakeWeb.allow_net_connect = true resource = @target_story.upload_attachment(File.dirname(__FILE__) + '/../../../LICENSE') FakeWeb.allow_net_connect = @orig_net_lock resource.should be_a(PivotalTracker::Attachment) resource.status.should == 'Pending' end end end
Version data entries
11 entries across 11 versions & 3 rubygems