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
path: root/spec/lib
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-11-15 12:33:01 +0300
committerJames Lopez <james@jameslopez.es>2016-11-17 10:22:58 +0300
commitf5600997512f1068cdc36ad7d086e7447dbc6d9d (patch)
treed4e9daf14f35d6824fd0164f2e53b441f9422c3f /spec/lib
parent747e5c3b6fb6e744bc1fce04f94930fdbb5f9121 (diff)
fix issue events and related spec - now using generic serializer for a hash
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/gitlab/cycle_analytics/events_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/lib/gitlab/cycle_analytics/events_spec.rb b/spec/lib/gitlab/cycle_analytics/events_spec.rb
index ebeea2be39e..073469a2b80 100644
--- a/spec/lib/gitlab/cycle_analytics/events_spec.rb
+++ b/spec/lib/gitlab/cycle_analytics/events_spec.rb
@@ -34,15 +34,15 @@ describe Gitlab::CycleAnalytics::Events do
end
it "has the author's URL" do
- expect(subject.issue_events.first[:author_profile_url]).not_to be_nil
+ expect(subject.issue_events.first[:author][:web_url]).not_to be_nil
end
it "has the author's avatar URL" do
- expect(subject.issue_events.first[:author_avatar_url]).not_to be_nil
+ expect(subject.issue_events.first[:author][:avatar_url]).not_to be_nil
end
it "has the author's name" do
- expect(subject.issue_events.first[:author_name]).to eq(context.author.name)
+ expect(subject.issue_events.first[:author][:name]).to eq(context.author.name)
end
end