mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 03:38:01 +00:00
24 lines
1.3 KiB
Ruby
Executable File
24 lines
1.3 KiB
Ruby
Executable File
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) }
|
|
|
|
it { is_expected.to run.with_params(["ổņ℮", "ŧщộ", "three"]).and_return(3) }
|
|
it { is_expected.to run.with_params(["ổņ℮", "ŧщộ", "ŧщộ"], "ŧщộ").and_return(2) }
|
|
it { is_expected.to run.with_params(["ổņ℮", nil, "ŧщộ"]).and_return(2) }
|
|
it { is_expected.to run.with_params(["ổņ℮", :undef, "ŧщộ"]).and_return(2) }
|
|
end
|