1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'spec_helper'
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) }
end
|