Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix spec test, failing Time.now is not executed in same second #114

Merged
merged 1 commit into from
Dec 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spec/functions/cert_date_valid_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
it 'returns true if it is still valid' do
expect(OpenSSL::X509::Certificate).to receive(:new).with('bleh').and_return(cert)
cert.not_before = Time.now - 1000
cert.not_after = Time.now + 1000
cert.not_after = cert.not_before + 2000
is_expected.to run.with_params('/path/to/cert').and_return(999)
end
end
Expand Down