diff options
author | James Lopez <james@jameslopez.es> | 2016-11-04 16:16:15 +0100 |
---|---|---|
committer | James Lopez <james@jameslopez.es> | 2016-11-17 08:22:57 +0100 |
commit | 83130ae877ffa946ef270743905f8fe1ac123305 (patch) | |
tree | aca655226fa50d10baa36ecf2e694e69390bcee6 /spec/lib | |
parent | beeb64610e6a1907d6675b535659a519db129453 (diff) | |
download | gitlab-ce-83130ae877ffa946ef270743905f8fe1ac123305.tar.gz |
Updated production events with new fields
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/cycle_analytics/events_spec.rb | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/spec/lib/gitlab/cycle_analytics/events_spec.rb b/spec/lib/gitlab/cycle_analytics/events_spec.rb index 815e70ab6a8..29cc3011542 100644 --- a/spec/lib/gitlab/cycle_analytics/events_spec.rb +++ b/spec/lib/gitlab/cycle_analytics/events_spec.rb @@ -21,6 +21,10 @@ describe Gitlab::CycleAnalytics::Events do expect(subject.issue_events.first['title']).to eq(context.title) end + it 'has the URL' do + expect(subject.issue_events.first['url']).not_to be_nil + end + it 'has an iid' do expect(subject.issue_events.first['iid']).to eq(context.iid.to_s) end @@ -216,7 +220,6 @@ describe Gitlab::CycleAnalytics::Events do deploy_master end - it 'has the name' do expect(subject.staging_events.first['name']).not_to be_nil end @@ -274,6 +277,10 @@ describe Gitlab::CycleAnalytics::Events do expect(subject.production_events.first['title']).to eq(context.title) end + it 'has the URL' do + expect(subject.production_events.first['url']).not_to be_nil + end + it 'has an iid' do expect(subject.production_events.first['iid']).to eq(context.iid.to_s) end @@ -282,12 +289,16 @@ describe Gitlab::CycleAnalytics::Events do expect(subject.production_events.first['created_at']).to end_with('ago') end - it "has the author's email" do - expect(subject.production_events.first['email']).to eq(context.author.email) + it "has the author's URL" do + expect(subject.production_events.first['author_profile_url']).not_to be_nil + end + + it "has the author's avatar URL" do + expect(subject.production_events.first['author_avatar_url']).not_to be_nil end it "has the author's name" do - expect(subject.production_events.first['name']).to eq(context.author.name) + expect(subject.production_events.first['author_name']).to eq(context.author.name) end end |