summaryrefslogtreecommitdiff
path: root/spec/models/deploy_key_spec.rb
blob: 2c9641aeffd9d72cbd98c604c08408e87dc35596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'spec_helper'

describe DeployKey do
  describe "Associations" do
    it { should belong_to(:project) }
  end

  describe "Validation" do
    it { should validate_presence_of(:title) }
    it { should validate_presence_of(:key) }
  end

  it { Factory.create(:deploy_key,
                      :project => Factory(:project)).should be_valid }
end
# == Schema Information
#
# Table name: deploy_keys
#
#  id         :integer         not null, primary key
#  project_id    :integer         not null
#  created_at :datetime
#  updated_at :datetime
#  key        :text
#  title      :string(255)
#  identifier :string(255)
#