event_spec.rb 619 Bytes
Newer Older
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
1 2 3 4
# == Schema Information
#
# Table name: events
#
5 6 7 8 9 10 11 12 13
#  id          :integer         not null, primary key
#  target_type :string(255)
#  target_id   :integer
#  title       :string(255)
#  data        :text
#  project_id  :integer
#  created_at  :datetime        not null
#  updated_at  :datetime        not null
#  action      :integer
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
14 15 16 17 18
#

require 'spec_helper'

describe Event do
19 20 21 22 23 24 25 26 27 28 29 30 31
  describe "Associations" do
    it { should belong_to(:project) }
  end

  describe "Creation" do
    before do 
      @event = Factory :event
    end

    it "should create a valid event" do 
      @event.should be_valid
    end
  end
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
32
end