summaryrefslogtreecommitdiff
path: root/spec/serializers/analytics_summary_serializer_spec.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-01-27 13:02:59 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-01-27 13:02:59 +0100
commit42e3f0fd7888ab8ebe11801e01dd3ca1f33b20cf (patch)
tree9840de93c579b1a6422144a0352493d45f6978bb /spec/serializers/analytics_summary_serializer_spec.rb
parent256a7735f8cb8872a7f7595590300e2fd952428e (diff)
downloadgitlab-ce-42e3f0fd7888ab8ebe11801e01dd3ca1f33b20cf.tar.gz
Return serializable hash from a represented serializer
Diffstat (limited to 'spec/serializers/analytics_summary_serializer_spec.rb')
-rw-r--r--spec/serializers/analytics_summary_serializer_spec.rb19
1 files changed, 9 insertions, 10 deletions
diff --git a/spec/serializers/analytics_summary_serializer_spec.rb b/spec/serializers/analytics_summary_serializer_spec.rb
index 7a84c8b0b40..5d7a94c2d02 100644
--- a/spec/serializers/analytics_summary_serializer_spec.rb
+++ b/spec/serializers/analytics_summary_serializer_spec.rb
@@ -1,29 +1,28 @@
require 'spec_helper'
describe AnalyticsSummarySerializer do
- let(:serializer) do
- described_class
- .new.represent(resource)
+ subject do
+ described_class.new.represent(resource)
end
- let(:json) { serializer.as_json }
let(:project) { create(:empty_project) }
let(:user) { create(:user) }
+
let(:resource) do
- Gitlab::CycleAnalytics::Summary::Issue.new(project: double,
- from: 1.day.ago,
- current_user: user)
+ Gitlab::CycleAnalytics::Summary::Issue
+ .new(project: double, from: 1.day.ago, current_user: user)
end
before do
- allow_any_instance_of(Gitlab::CycleAnalytics::Summary::Issue).to receive(:value).and_return(1.12)
+ allow_any_instance_of(Gitlab::CycleAnalytics::Summary::Issue)
+ .to receive(:value).and_return(1.12)
end
it 'it generates payload for single object' do
- expect(json).to be_kind_of Hash
+ expect(subject).to be_kind_of Hash
end
it 'contains important elements of AnalyticsStage' do
- expect(json).to include(:title, :value)
+ expect(subject).to include(:title, :value)
end
end