Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2017-09-19 06:18:51 +0300
committerRobert Speicher <rspeicher@gmail.com>2017-12-20 00:45:07 +0300
commit32ff813d3dccef6378361dff599eca44b05f46d4 (patch)
treeaa5ef5e4ae4c8c10029ffc483527584240dc7d84 /spec/models/user_spec.rb
parent5b880f0d36b082a0b443c5fe95f51a84dee27475 (diff)
Add BlocksJsonSerialization model concern and include it in User
Diffstat (limited to 'spec/models/user_spec.rb')
-rw-r--r--spec/models/user_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb
index 4687d9dfa00..e58e7588df0 100644
--- a/spec/models/user_spec.rb
+++ b/spec/models/user_spec.rb
@@ -12,6 +12,7 @@ describe User do
it { is_expected.to include_module(Referable) }
it { is_expected.to include_module(Sortable) }
it { is_expected.to include_module(TokenAuthenticatable) }
+ it { is_expected.to include_module(BlocksJsonSerialization) }
end
describe 'delegations' do