Sha256: 5b17702375005b414fcb7a8654c1fae00d48175828800ed067f15cfd6013d99d

Contents?: true

Size: 1.74 KB

Versions: 6

Compression:

Stored size: 1.74 KB

Contents

require_relative "../../../test_helper"

module Troo
  module External
    describe CardAdaptor do
      let(:described_class) { CardAdaptor }
      let(:resource) { OpenStruct.new({
        board_id:           "526d8e130a14a9d846001d96",
        list_id:            "526d8e130a14a9d846001d97",
        id:                 "526d8f19ddb279532e005259",
        member_ids:         ["5195fdb5a8c01a2318004f5d"],
        short_id:           67,
        name:               "My Test Card",
        desc:               "some description",
        url:                "some trello url",
        pos:                16,
        last_activity_date: "2013-12-17 21:48:09 UTC",
        closed:             false,
      }) }

      describe "#initialize" do
        subject { described_class.new(resource) }

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

      describe "#adapted" do
        subject { described_class.adapt(resource) }

        it "returns an adapted resource suitable for local persistence" do
          subject.must_equal({
            external_board_id:   "526d8e130a14a9d846001d96",
            external_list_id:    "526d8e130a14a9d846001d97",
            external_card_id:    "526d8f19ddb279532e005259",
            external_member_ids: "[\"5195fdb5a8c01a2318004f5d\"]",
            short_id:            "67",
            name:                "My Test Card",
            desc:                "some description",
            url:                 "some trello url",
            position:            "16",
            last_activity_date:  "2013-12-17 21:48:09 UTC",
            closed:              "false",
          })
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
troo-0.0.7 test/lib/troo/external/card_adaptor_test.rb
troo-0.0.6 test/lib/troo/external/card_adaptor_test.rb
troo-0.0.5 test/lib/troo/external/card_adaptor_test.rb
troo-0.0.4 test/lib/troo/external/card_adaptor_test.rb
troo-0.0.3 test/lib/troo/external/card_adaptor_test.rb
troo-0.0.2 test/lib/troo/external/card_adaptor_test.rb