Commit fefa98b2 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Make rspec start

parent 0b5d627c
......@@ -13,7 +13,7 @@
#
module Ci
class HipChatService < Service
class HipChatService < Ci::Service
prop_accessor :hipchat_token, :hipchat_room, :hipchat_server
boolean_accessor :notify_only_broken_builds
validates :hipchat_token, presence: true, if: :activated?
......
......@@ -13,7 +13,7 @@
#
module Ci
class MailService < Service
class MailService < Ci::Service
delegate :email_recipients, :email_recipients=,
:email_add_pusher, :email_add_pusher=,
:email_only_broken_builds, :email_only_broken_builds=, to: :project, prefix: false
......
......@@ -13,7 +13,7 @@
#
module Ci
class SlackService < Service
class SlackService < Ci::Service
prop_accessor :webhook
boolean_accessor :notify_only_broken_builds
validates :webhook, presence: true, if: :activated?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment