Sha256: 0f3a89d3d9eaff7498a5fdbff2c2ad7b899866f1b5fbc6931250cefba8053268
Contents?: true
Size: 584 Bytes
Versions: 18
Compression:
Stored size: 584 Bytes
Contents
# frozen_string_literal: true describe Nanoc::Int::ProcessingActions::Filter do let(:action) { described_class.new(:foo, awesome: true) } describe '#serialize' do subject { action.serialize } it { is_expected.to eql([:filter, :foo, 'sJYzLjHGo1e4ytuDfnOLkqrt9QE=']) } end describe '#to_s' do subject { action.to_s } it { is_expected.to eql('filter :foo, {:awesome=>true}') } end describe '#inspect' do subject { action.inspect } it { is_expected.to eql('<Nanoc::Int::ProcessingActions::Filter :foo, "sJYzLjHGo1e4ytuDfnOLkqrt9QE=">') } end end
Version data entries
18 entries across 18 versions & 1 rubygems