gitlab-org--gitlab-foss/spec/models/application_setting_spec.rb

23 lines
702 B
Ruby
Raw Normal View History

2015-01-22 17:40:03 +00:00
# == Schema Information
#
# Table name: application_settings
#
2015-03-04 22:14:00 +00:00
# id :integer not null, primary key
# default_projects_limit :integer
# signup_enabled :boolean
# signin_enabled :boolean
# gravatar_enabled :boolean
# sign_in_text :text
# created_at :datetime
# updated_at :datetime
# home_page_url :string(255)
# default_branch_protection :integer default(2)
# twitter_sharing_enabled :boolean default(TRUE)
2015-01-22 17:40:03 +00:00
#
require 'spec_helper'
describe ApplicationSetting, models: true do
it { expect(ApplicationSetting.create_from_defaults).to be_valid }
end