Sha256: 039991d54e39daa08c92f5d5d782fff3c537eb7ab503121e58b784c26a0d0f92

Contents?: true

Size: 622 Bytes

Versions: 2

Compression:

Stored size: 622 Bytes

Contents

# coding: utf-8
require 'spec_helper'

describe DummyArgument do
  let(:dummy) { described_class.new(latitude: 7, longitude: 11) }

  it { expect(dummy).to respond_to(:properties) }

  it { expect(dummy).to respond_to(:latitude) }
  it { expect(dummy).to respond_to(:latitude=) }
  it { expect(dummy).to respond_to(:latitude_will_change!) }
  it { expect(dummy).to respond_to(:latitude_changed?) }

  it { expect(dummy).to respond_to(:longitude) }
  it { expect(dummy).to respond_to(:longitude=) }
  it { expect(dummy).to respond_to(:longitude_will_change!) }
  it { expect(dummy).to respond_to(:longitude_changed?) }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_hstore_accessor-0.3.1 spec/app/models/dummy_argument_spec.rb
simple_hstore_accessor-0.2.0 spec/app/models/dummy_argument_spec.rb