Sha256: 596a4a033d258def61b16a1e6c63f2be94210ee9de32823f99c6a5005805ba4c

Contents?: true

Size: 1.01 KB

Versions: 10

Compression:

Stored size: 1.01 KB

Contents

require 'spec_helper'

describe LinkThumbnailer::Graders::HtmlAttribute do

  let(:description) { double('description') }
  let(:instance)    { described_class.new(description, :class) }

  describe '#call' do

    let(:action) { instance.call }

    context 'when current node does not match attribute' do

      before do
        instance.stub(:attribute?).and_return(false)
      end

      it { expect(action).to eq(1.0) }

    end

    context 'when current node has a negative attribute' do

      before do
        instance.stub(:attribute?).and_return(true)
        instance.stub(:negative?).and_return(true)
        instance.stub(:positive?).and_return(false)
      end

      it { expect(action).to eq(0.0) }

    end

    context 'when current node has a positive attribute' do

      before do
        instance.stub(:attribute?).and_return(true)
        instance.stub(:negative?).and_return(false)
        instance.stub(:positive?).and_return(true)
      end

      it { expect(action).to eq(1.0) }

    end

  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
link_thumbnailer-3.3.0 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.2.1 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.2.0 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.1.2 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.1.1 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.1.0 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.0.3 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.0.2 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.0.1 spec/graders/html_attribute_spec.rb
link_thumbnailer-3.0.0 spec/graders/html_attribute_spec.rb