Sha256: d453091793dcba80fdc9468417d24d82a1aea2e79c8ec070ac72cc6cdbc8421c

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

require 'spec_helper'

describe Humanize::Giga do
  let(:g) { Humanize::Giga.new(3.25) }

  context "#value" do
    it "should return the value" do
      expect(g.value).to eq(3.25)
    end
  end

  context "#to_b" do
    it "should convert to Bytes" do
      expect(g.to_b).to be_an_instance_of(Humanize::Byte)
    end 
    it "should convert the value to Byte" do
      expect(g.to_b.value).to eq(3489660928)
    end
  end

  context "#to_k" do
    it "should convert to Kilo bytes" do
      expect(g.to_k).to be_an_instance_of(Humanize::Kilo)
    end 
    it "should convert the value to Kilo bytes" do
      expect(g.to_k.value).to eq(3407872)
    end
  end

  context "#to_m" do
    it "should convert to Mega bytes" do
      expect(g.to_m).to be_an_instance_of(Humanize::Mega)
    end
    it "should convert the value to Mega bytes" do
      expect(g.to_m.value).to eq(3328)
    end
  end

  context "#to_g" do
    it "should return self" do
      expect(g.to_g).to be g
    end
  end

  context "#to_s" do
    context 'without any specification' do
      it "should return a float with all digits" do
        expect(g.to_s).to eq(3.25)
      end
    end

    context 'with decimal_digits specified' do
      before :each do
        @g = Humanize::Giga.new 3.22
      end

      it "should return a float with specified digits" do
        expect(@g.to_s(:decimal_digits => 1)).to eq(3.2)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
humanize-bytes-2.0.0 spec/humanize/giga_spec.rb