Sha256: caf874a3eeaae5e0bc7eda5ddf86d0905301e3f90d6b72e60785bba8fd31ef24

Contents?: true

Size: 541 Bytes

Versions: 6

Compression:

Stored size: 541 Bytes

Contents

require File.join(File.dirname(__FILE__), '..', '..', 'spec_helper')

describe PivotalTracker::Task do
  before do
    @project = PivotalTracker::Project.find(59022)
    @story = @project.stories.all.first
  end

  context ".all" do
    it "should return an array of tasks" do
      @story.tasks.all.should be_a(Array)
      @story.tasks.all.first.should be_a(PivotalTracker::Task)
    end
  end

  context ".find" do
    it "should return a given task" do
      @story.tasks.find(179025).should be_a(PivotalTracker::Task)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pivotal-tracker-0.1.3 spec/unit/pivotal-tracker/task_spec.rb
pivotal-tracker-0.1.2 spec/unit/pivotal-tracker/task_spec.rb
pivotal-tracker-0.1.1 spec/unit/pivotal-tracker/task_spec.rb
pivotal-tracker-0.1.0.1 spec/unit/pivotal-tracker/task_spec.rb
pivotal-tracker-0.1.0 spec/unit/pivotal-tracker/task_spec.rb
pivotal-tracker-0.0.9.1 spec/unit/pivotal-tracker/task_spec.rb