Sha256: 26cfd000b111d2d09dfca1d06cffbaea9cec87c0e4fd0816f40604d6882284fb
Contents?: true
Size: 293 Bytes
Versions: 4
Compression:
Stored size: 293 Bytes
Contents
require 'spec_helper' describe AngularSprinkles::Element::Html do let(:args) { { key: 'value', tag: 'a' } } subject { described_class.new(args) } it 'returns the args as they were' do expect(subject.attributes).to eq({ key: 'value' }) expect(subject.tag).to eq('a') end end
Version data entries
4 entries across 4 versions & 1 rubygems