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
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-08 20:53:35 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-08 20:53:35 +0300
commit57a65ede77b7bbae6e3b2a7aa52135de7b0c2f8e (patch)
tree3f1d72a04c3deefb8a911d013e686b036541af60 /spec
parent8589b4e137f50293952923bb07e2814257d7784d (diff)
Improve application settings and write tests
Diffstat (limited to 'spec')
-rw-r--r--spec/models/application_setting_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/models/application_setting_spec.rb b/spec/models/application_setting_spec.rb
new file mode 100644
index 00000000000..3a8d52c11c4
--- /dev/null
+++ b/spec/models/application_setting_spec.rb
@@ -0,0 +1,7 @@
+require 'spec_helper'
+
+describe ApplicationSetting, models: true do
+ describe 'should exists on start' do
+ it { ApplicationSetting.count.should_not be_zero }
+ end
+end