Sha256: 83b97edc7b0925f0bdba2e92f4c76add9c40a3393ccb91841c08973c2c1b3926
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true require 'rails_helper' RSpec.describe Attachy::Viewer, '.remove_button' do subject { described_class.new method, object } let!(:object) { create :user } let!(:method) { :avatar } let!(:file) do allow(Cloudinary::Uploader).to receive(:remove_tag) create :file, attachable: object, scope: method end context 'when give no html options' do it 'returns just the default options' do el = subject.remove_button expect(el).to have_tag :span, with: { class: 'attachy__remove' } do with_text '×' end end end context 'when give html options' do let!(:html) { { attribute: :value } } it 'merges with default options' do el = subject.remove_button(html: html) expect(el).to have_tag :span, with: { attribute: :value, class: 'attachy__remove' } end end context 'when a block is given' do let!(:html) { { target: :blank } } it 'yields the :html' do subject.remove_button(html: html) do |h| expect(h).to eq(target: :blank, class: :attachy__remove) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems