2013-04-10 14:38:14 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-06-01 13:21:59 +02:00
|
|
|
describe 'count' do
|
|
|
|
it { is_expected.not_to eq(nil) }
|
|
|
|
it { is_expected.to run.with_params().and_raise_error(ArgumentError) }
|
|
|
|
it { is_expected.to run.with_params("one").and_raise_error(ArgumentError) }
|
|
|
|
it { is_expected.to run.with_params("one", "two").and_return(1) }
|
|
|
|
it {
|
|
|
|
pending("should actually be like this, and not like above")
|
|
|
|
is_expected.to run.with_params("one", "two").and_raise_error(ArgumentError)
|
|
|
|
}
|
|
|
|
it { is_expected.to run.with_params("one", "two", "three").and_raise_error(ArgumentError) }
|
|
|
|
it { is_expected.to run.with_params(["one", "two", "three"]).and_return(3) }
|
|
|
|
it { is_expected.to run.with_params(["one", "two", "two"], "two").and_return(2) }
|
|
|
|
it { is_expected.to run.with_params(["one", nil, "two"]).and_return(2) }
|
|
|
|
it { is_expected.to run.with_params(["one", "", "two"]).and_return(2) }
|
|
|
|
it { is_expected.to run.with_params(["one", :undef, "two"]).and_return(2) }
|
2013-04-10 14:38:14 +02:00
|
|
|
end
|