summaryrefslogtreecommitdiff
path: root/spec/models/git_hook_spec.rb
blob: 74d97135600f584d29b9027a3e82f5597495f193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'spec_helper'

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

  describe "Validation" do
    it { should validate_presence_of(:project) }
    it { should validate_numericality_of(:max_file_size).is_greater_than_or_equal_to(0).only_integer }
  end
end