2015-01-22 12:40:03 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: application_settings
|
|
|
|
#
|
2015-01-25 10:33:54 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# default_projects_limit :integer
|
2015-01-25 16:23:28 -05:00
|
|
|
# default_branch_protection :integer
|
2015-01-25 10:33:54 -05:00
|
|
|
# signup_enabled :boolean
|
|
|
|
# signin_enabled :boolean
|
|
|
|
# gravatar_enabled :boolean
|
|
|
|
# sign_in_text :text
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# home_page_url :string(255)
|
2015-01-22 12:40:03 -05:00
|
|
|
#
|
|
|
|
|
2015-01-08 12:53:35 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ApplicationSetting, models: true do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(ApplicationSetting.create_from_defaults).to be_valid }
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|