mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-31 09:12:46 -05:00
11 lines
234 B
Ruby
11 lines
234 B
Ruby
require 'spec_helper'
|
|
|
|
describe Commercial do
|
|
|
|
describe '.find_since_last_login' do
|
|
it 'returns none if last_sign_in_at is nil' do
|
|
expect(Comment.find_since_last_login(create(:user))).to eq(Comment.none)
|
|
end
|
|
end
|
|
end
|