Sha256: c95879ac813a374a67b4001f41a7f678ec5b1165fb2219d2cfbfa31cc6b79a4f
Contents?: true
Size: 332 Bytes
Versions: 18
Compression:
Stored size: 332 Bytes
Contents
require 'spec_helper' describe Dandelion::Change do let(:read) { -> { 'baz' }} let(:change) { Dandelion::Change.new('foo', 'bar', read) } it 'has path' do expect(change.path).to eq 'foo' end it 'has type' do expect(change.type).to eq 'bar' end it 'has data' do expect(change.data).to eq 'baz' end end
Version data entries
18 entries across 18 versions & 1 rubygems