Browse Source

Spec InlineRablScope (#3542)

closed-social-glitch-2
Akihiko Odaki (@fn_aki@pawoo.net) 6 years ago
committed by Eugen Rochko
parent
commit
02a0fd5b64
1 changed files with 23 additions and 0 deletions
  1. +23
    -0
      spec/lib/inline_rabl_scope_spec.rb

+ 23
- 0
spec/lib/inline_rabl_scope_spec.rb View File

@ -0,0 +1,23 @@
# frozen_string_literal: true
require 'rails_helper'
describe InlineRablScope do
describe '#current_account' do
it 'returns the given account' do
account = Fabricate(:account)
expect(InlineRablScope.new(account).current_account).to eq account
end
end
describe '#current_user' do
it 'returns nil if the given account is nil' do
expect(InlineRablScope.new(nil).current_user).to eq nil
end
it 'returns user of account if the given account is not nil' do
user = Fabricate(:user)
expect(InlineRablScope.new(user.account).current_user).to eq user
end
end
end

Loading…
Cancel
Save