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:
Diffstat (limited to 'spec/ci/features/admin/events_spec.rb')
-rw-r--r--spec/ci/features/admin/events_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/ci/features/admin/events_spec.rb b/spec/ci/features/admin/events_spec.rb
new file mode 100644
index 00000000000..469c6ed102d
--- /dev/null
+++ b/spec/ci/features/admin/events_spec.rb
@@ -0,0 +1,20 @@
+require 'spec_helper'
+
+describe "Admin Events" do
+ let(:event) { FactoryGirl.create :admin_event }
+
+ before do
+ skip_admin_auth
+ login_as :user
+ end
+
+ describe "GET /admin/events" do
+ before do
+ event
+ visit admin_events_path
+ end
+
+ it { page.should have_content "Events" }
+ it { page.should have_content event.description }
+ end
+end