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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-11-04 15:23:06 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-11-04 15:23:06 +0300
commite49fb264e6cb5eff44330d69d34b5f74ef262659 (patch)
tree2b3b22c0b5338cb2b81ff97d25e3770e9a3eb59d /spec/serializers/environment_entity_spec.rb
parent3968b07d7ea1fd2ca07e427a487ea94ca0c6081d (diff)
Add tests for deployment and environment entitites
Diffstat (limited to 'spec/serializers/environment_entity_spec.rb')
-rw-r--r--spec/serializers/environment_entity_spec.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/serializers/environment_entity_spec.rb b/spec/serializers/environment_entity_spec.rb
new file mode 100644
index 00000000000..4ca8c299147
--- /dev/null
+++ b/spec/serializers/environment_entity_spec.rb
@@ -0,0 +1,18 @@
+require 'spec_helper'
+
+describe EnvironmentEntity do
+ let(:entity) do
+ described_class.new(environment, request: double)
+ end
+
+ let(:environment) { create(:environment) }
+ subject { entity.as_json }
+
+ it 'exposes latest deployment' do
+ expect(subject).to include(:last_deployment)
+ end
+
+ it 'exposes core elements of environment' do
+ expect(subject).to include(:id, :name, :state, :environment_url)
+ end
+end