Sha256: bc5db1ac5f5c980734d5cb88d8e7db70135ba5dfc16f53b09b03b2a78af0255f

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Adamantium::Freezer::Deep, '.call' do
  subject { object.call(value) }

  let(:object) { self.class.described_type }

  context 'with a numeric value' do
    let(:value) { 1 }

    it { should equal(value) }
  end

  context 'with a true value' do
    let(:value) { true }

    it { should equal(value) }
  end

  context 'with a false value' do
    let(:value) { false }

    it { should equal(value) }
  end

  context 'with a nil value' do
    let(:value) { nil }

    it { should equal(value) }
  end

  context 'with a symbol value' do
    let(:value) { :symbol }

    it { should equal(value) }
  end

  context 'with a frozen value' do
    let(:value) { String.new.freeze }

    it { should equal(value) }
  end

  context 'with a module value' do
    let(:value) { Module.new }

    it { should equal(value) }

    it { should_not be_frozen }
  end

  context 'with a class value' do
    let(:value) { Class.new }

    it { should equal(value) }

    it { should_not be_frozen }
  end

  context 'with an unfrozen value' do
    let(:value) { String.new }

    it { should_not equal(value) }

    it { should be_instance_of(String) }

    it { should == value }

    it { should be_frozen }
  end

  context 'with a composed value' do
    let(:value) { [String.new] }

    it 'does freeze inner values' do
      subject.first.should be_frozen
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
adamantium-0.0.3 spec/unit/adamantium/freezer/deep/class_methods/call_spec.rb