Sha256: 1e0026d7106aca4b8a1f3a5a0fb67b736a0b0dabb154de8d390ad71830855b3a
Contents?: true
Size: 855 Bytes
Versions: 42
Compression:
Stored size: 855 Bytes
Contents
require "spec_helper" require_relative "../../../lib/octopolo/jira/story_commenter" module Octopolo module Jira describe StoryCommenter do let(:comments) { stub } let(:issue) { stub(:comments => comments) } context ".new" do it "finds the issue via the jira api" do Jiralicious.should_receive(:configure) Jiralicious::Issue.should_receive(:find).with(:id).and_return(issue) StoryCommenter.new(:id, 'text') end end context "#perform" do let(:comment) { "test comment" } before do Jiralicious::Issue.stub(:find).with(:id).and_return(issue) end it "creates a new note for the story" do comments.should_receive(:add).with(comment) StoryCommenter.new(:id, comment).perform end end end end end
Version data entries
42 entries across 42 versions & 1 rubygems