Sha256: 22f95377c0525d52804e3fd1574ee72d68646e9b527ea860c4e0f7d76a1faafd

Contents?: true

Size: 1.49 KB

Versions: 12

Compression:

Stored size: 1.49 KB

Contents

require 'helper'
require 'flipper/typecast'

RSpec.describe Flipper::Typecast do
  {
    nil => false,
    "" => false,
    0 => false,
    1 => true,
    "0" => false,
    "1" => true,
    true => true,
    false => false,
    "true" => true,
    "false" => false,
  }.each do |value, expected|
    context "#to_boolean for #{value.inspect}" do
      it "returns #{expected}" do
        expect(described_class.to_boolean(value)).to be(expected)
      end
    end
  end

  {
    nil => 0,
    "" => 0,
    0 => 0,
    1 => 1,
    "1" => 1,
    "99" => 99,
  }.each do |value, expected|
    context "#to_integer for #{value.inspect}" do
      it "returns #{expected}" do
        expect(described_class.to_integer(value)).to be(expected)
      end
    end
  end

  {
    nil => Set.new,
    "" => Set.new,
    Set.new([1, 2]) => Set.new([1, 2]),
    [1, 2] => Set.new([1, 2])
  }.each do |value, expected|
    context "#to_set for #{value.inspect}" do
      it "returns #{expected}" do
        expect(described_class.to_set(value)).to eq(expected)
      end
    end
  end

  it "raises argument error for integer value that cannot be converted to an integer" do
    expect {
      described_class.to_integer(["asdf"])
    }.to raise_error(ArgumentError, %Q(["asdf"] cannot be converted to an integer))
  end

  it "raises argument error for set value that cannot be converted to a set" do
    expect {
      described_class.to_set("asdf")
    }.to raise_error(ArgumentError, %Q("asdf" cannot be converted to a set))
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
flipper-0.10.2 spec/flipper/typecast_spec.rb
flipper-0.10.1 spec/flipper/typecast_spec.rb
flipper-0.10.0 spec/flipper/typecast_spec.rb
flipper-0.9.2 spec/flipper/typecast_spec.rb
flipper-0.9.1 spec/flipper/typecast_spec.rb
flipper-0.9.0 spec/flipper/typecast_spec.rb
flipper-0.9.0.beta1 spec/flipper/typecast_spec.rb
flipper-0.8.0 spec/flipper/typecast_spec.rb
flipper-0.7.5 spec/flipper/typecast_spec.rb
flipper-0.7.4 spec/flipper/typecast_spec.rb
flipper-0.7.3 spec/flipper/typecast_spec.rb
flipper-0.7.2 spec/flipper/typecast_spec.rb