Sha256: d9f5745ebe8075f0f62f9a611dbba9f4d2d73fe71844581c0ecc12ec1e100e28

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

require_relative '../../../../test_helper'

module Troo
  module Commands
    module Add
      describe Comment do
        let(:described_class) { Comment }
        let(:value) { 'Add Comment Test' }
        let(:id)    {}

        before do
          Retrieval::Card.stubs(:retrieve)
          CreateComment.stubs(:for).returns(false)
        end

        describe '#add' do
          subject { described_class.new(value, id).add }

          context 'when the parent resource exists' do
            context 'and the comment was created' do
              before { CreateComment.stubs(:for).returns(true) }

              it 'returns a polite message' do
                subject.must_match(/New comment created/)
              end
            end

            context 'and the comment was not created' do
              it 'returns a polite message' do
                subject.must_match(/could not/)
              end
            end
          end

          context 'when the parent resource does not exist' do
            it 'returns a polite message' do
              subject.must_match(/could not/)
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
troo-0.0.8 test/lib/troo/commands/add/comment_test.rb