Sha256: e99aa713a8f651277894217a454799a4fd196d3da1cd62385e2e46a64f9e9c9f

Contents?: true

Size: 1.68 KB

Versions: 1

Compression:

Stored size: 1.68 KB

Contents

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

module Troo
  describe Persistence::Board do
    let(:described_class) { Persistence::Board }
    let(:resource) do
      OpenStruct.new(
        id:     '526d8e130a14a9d846001d96',
        name:   resource_name,
        description:   'A very brief description...',
        closed: false)
    end
    let(:resource_name) { 'My Test Board' }
    let(:options) { {} }

    before { @board = Fabricate(:board) }
    after  { database_cleanup }

    describe '.initialize' do
      subject { described_class.new(resource, options) }

      it 'assigns the resource to an instance variable' do
        subject.instance_variable_get('@resource')
          .must_equal(resource)
      end

      it 'assigns the options to an instance variable' do
        subject.instance_variable_get('@options').must_equal(options)
      end
    end

    describe '#persist' do
      subject { described_class.for(resource, options) }

      context 'when there is already a local copy' do
        context 'and the local copy is identical' do
          it 'returns the local copy' do
            subject.must_equal(@board)
          end
        end

        context 'and the local copy is out of date' do
          let(:resource_name) { 'My Renamed Board' }

          it 'updates and returns the new local copy' do
            subject.name.must_equal(resource_name)
          end
        end
      end

      context 'when there is not already a local copy' do
        let(:resource_name) { 'My New Test Board' }

        before { database_cleanup }

        it 'creates and returns the new local copy' do
          subject.name.must_equal(resource_name)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
troo-0.0.8 test/lib/troo/models/persistence/board_test.rb